diff --git a/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py b/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py index cbd5ad4..39b307e 100644 --- a/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py +++ b/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py @@ -121,5 +121,5 @@ elif "hookContext" in json_input["args"]: ) and "inputFields" in json_input["args"]["hookContext"] and len(json_input["args"]["hookContext"]["inputFields"]) > 2 ): - scene = stash.find_scene(id) + scene = stash.find_scene(id, fragment="id organized tags {name} performers {id}") processScene(scene) diff --git a/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml b/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml index 7553fa9..64da228 100644 --- a/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml +++ b/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml @@ -1,6 +1,6 @@ name: Tag Scenes From Performer Tags description: tags scenes with performer tags. -version: 0.2.2 +version: 0.2.3 exec: - python - "{pluginDir}/tagScenesWithPerfTags.py"