mirror of
https://github.com/stashapp/CommunityScripts.git
synced 2026-02-04 01:52:30 -06:00
Fix GraphQL Validation is Failing for timestampTrade and TPBMarkers (#608)
This commit is contained in:
parent
a313a93759
commit
377ba6d303
@ -202,7 +202,9 @@ if TPDB_ENDPOINT in [
|
||||
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()
|
||||
|
||||
@ -1443,7 +1443,9 @@ if "mode" in json_input["args"]:
|
||||
"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 = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user