We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b6e84 commit 58af9acCopy full SHA for 58af9ac
plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py
@@ -63,8 +63,10 @@ def processScene(scene):
63
elif "hookContext" in json_input["args"]:
64
id = json_input["args"]["hookContext"]["id"]
65
if (
66
- json_input["args"]["hookContext"]["type"] == "Scene.Update.Post"
67
- or "Scene.Create.Post"
+ (
+ json_input["args"]["hookContext"]["type"] == "Scene.Update.Post"
68
+ or "Scene.Create.Post"
69
+ ) and len(json_input["args"]["hookContext"]["inputFields"]) > 2
70
):
71
scene = stash.find_scene(id)
72
processScene(scene)
0 commit comments