Skip to content
4 changes: 3 additions & 1 deletion plugins/TPDBMarkers/tpdbMarkers.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ def processGroup(g):
PLUGIN_ARGS = json_input["args"]["mode"]
if "processScene" == PLUGIN_ARGS:
if "scene_id" in json_input["args"]:
scene = stash.find_scene(json_input["args"]["scene_id"])
scene = stash.find_scene(
json_input["args"]["scene_id"],
fragment='id urls stash_ids {endpoint stash_id} groups {scene_index group {id}} tags {id} scene_markers {id} interactive files { path duration fingerprint(type: "phash")}')
processScene(scene)
else:
processAll()
Expand Down
4 changes: 3 additions & 1 deletion plugins/timestampTrade/timestampTrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,9 @@ def excluded_marker_tag(marker):
"id"
)
if "scene_id" in json_input["args"]:
scene = stash.find_scene(json_input["args"]["scene_id"])
scene = stash.find_scene(
json_input["args"]["scene_id"],
fragment='id urls stash_ids {endpoint stash_id} groups {scene_index group {id}} tags {id} scene_markers {id} interactive files { path duration fingerprint(type: "phash")}')
processScene(scene)
else:
query = {
Expand Down