This commit is contained in:
2025-09-07 21:13:46 -04:00
parent 085e43a37b
commit c3d1f50cfb
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
0.0.14 0.0.16
+5 -5
View File
@@ -348,17 +348,17 @@ class RadarrClient:
imdb_id = imdb_id if imdb_id.startswith("tt") else f"tt{imdb_id}" imdb_id = imdb_id if imdb_id.startswith("tt") else f"tt{imdb_id}"
_log("DEBUG", f"Radarr API: Looking up movie by IMDb ID: {imdb_id}") _log("DEBUG", f"Radarr API: Looking up movie by IMDb ID: {imdb_id}")
# Try direct movie search first # Radarr's IMDb filtering is unreliable, so fetch all movies and filter client-side
res = self._get("/api/v3/movie", {"imdbId": imdb_id}) res = self._get("/api/v3/movie")
if isinstance(res, list): if isinstance(res, list):
# Filter results to find exact IMDb ID match # Filter results to find exact IMDb ID match
for movie in res: for movie in res:
if movie.get("imdbId") == imdb_id: if movie.get("imdbId") == imdb_id:
_log("DEBUG", f"Radarr API: Found exact match: {movie.get('title')} (ID: {movie.get('id')})") _log("DEBUG", f"Radarr API: Found exact match: {movie.get('title')} (ID: {movie.get('id')})")
return movie return movie
_log("WARNING", f"Radarr API: Got {len(res)} movies but none match IMDb {imdb_id}") _log("WARNING", f"Radarr API: Searched {len(res)} movies but none match IMDb {imdb_id}")
# Try lookup endpoint # Fallback: Try lookup endpoint
res = self._get("/api/v3/movie/lookup/imdb", {"imdbId": imdb_id}) res = self._get("/api/v3/movie/lookup/imdb", {"imdbId": imdb_id})
if isinstance(res, dict) and res.get("id") and res.get("imdbId") == imdb_id: if isinstance(res, dict) and res.get("id") and res.get("imdbId") == imdb_id:
_log("DEBUG", f"Radarr API: Found movie via lookup: {res.get('title')} (ID: {res.get('id')})") _log("DEBUG", f"Radarr API: Found movie via lookup: {res.get('title')} (ID: {res.get('id')})")
@@ -395,7 +395,7 @@ class RadarrClient:
page_size = 1000 page_size = 1000
while True: while True:
data = self._get("/api/v3/history/movie", { data = self._get("/api/v3/history", {
"movieId": movie_id, "page": page, "pageSize": page_size, "movieId": movie_id, "page": page, "pageSize": page_size,
"sortKey": "date", "sortDirection": "ascending" "sortKey": "date", "sortDirection": "ascending"
}) })