Skip to content

Commit 26209f4

Browse files
resolve issue 731 (#732)
Co-authored-by: DogmaDragon <103123951+DogmaDragon@users.noreply.github.com>
1 parent d9facf3 commit 26209f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def processAll():
4949
for perf in performers:
5050
performer_tags_ids = []
5151
performer_tags_names = []
52-
for performer_tag in perf[0]["tags"]:
52+
for performer_tag in perf.get("tags",[]):
5353
if settings["excludeTagWithIgnoreAutoTag"] and performer_tag["ignore_auto_tag"]:
5454
continue
5555
performer_tags_ids.append(performer_tag["id"])

plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tag Scenes From Performer Tags
22
description: Tags scenes with performer tags.
3-
version: 1.0
3+
version: 1.0.1
44
url: https://discourse.stashapp.cc/t/tag-scenes-from-performer-tags/1413
55
exec:
66
- python

0 commit comments

Comments
 (0)