[timestampTrade] Revert breaking change (#493)

This commit is contained in:
DogmaDragon
2025-01-25 19:53:32 +02:00
committed by GitHub
parent 1104140f4a
commit a1809330aa
2 changed files with 3 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
requests
stashapp-tools
stashapp-tools == v0.2.55

View File

@@ -211,7 +211,7 @@ def processSceneTimestamTrade(s):
}
}
}"""
res = stash.call_GQL(scrapers_graphql)
res = stash.callGQL(scrapers_graphql)
for r in res["listScrapers"]:
if r["movie"]["urls"]:
for url in r["movie"]["urls"]:
@@ -1340,7 +1340,7 @@ if "timestampTrade" in config["plugins"]:
# check the schema version for features in the dev release
res = stash.call_GQL("{systemStatus {databaseSchema databasePath}}")
res = stash.callGQL("{systemStatus {databaseSchema databasePath}}")
settings["schema"] = res["systemStatus"]["databaseSchema"]
settings["funscript_dbpath"] = (
Path(res["systemStatus"]["databasePath"]).parent / "funscript_index.sqlite"