fix: prowlarr infoHash

This commit is contained in:
Goldy
2024-07-17 00:37:36 +02:00
committed by GitHub
parent 23a231de08
commit 71738ee3a6
+1 -1
View File
@@ -247,7 +247,7 @@ async def get_indexer_manager(
response = await response.json()
for result in response:
result["InfoHash"] = result["infoHash"]
result["InfoHash"] = result["infoHash"] if "infoHash" in result else None
result["Title"] = result["title"]
result["Link"] = result["downloadUrl"]
result["Tracker"] = result["indexer"]