Skip to content

Commit 906a850

Browse files
authored
Fix groups in TPDBMarker (#633)
1 parent e2bd2c1 commit 906a850

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/TPDBMarkers/TPDBMarkers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: The Porn DB Markers
22
description: Sync Markers from The Porn DB aka theporndb.net
3-
version: 0.4.2
3+
version: 0.4.3
44
url: https://github.com/stashapp/CommunityScripts/
55
exec:
66
- python

plugins/TPDBMarkers/tpdbMarkers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def processScene(scene):
6161
# skip if there is already a group linked
6262
if settings["createMovieFromScene"] and len(scene.get("groups", [])) == 0:
6363
groups=[]
64-
for g in data["groups"]:
64+
for g in data["movies"]:
6565
group=processGroup(g)
6666
if group:
6767
groups.append({"group_id": group["id"],"scene_index":None})

0 commit comments

Comments
 (0)