From af6e5b5ad1ed4bbc5dc263afb7dd761c151a04c4 Mon Sep 17 00:00:00 2001 From: SBCrumb Date: Mon, 8 Sep 2025 10:38:16 -0400 Subject: [PATCH] added radarr debug dates --- clients/radarr_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/radarr_client.py b/clients/radarr_client.py index b073c21..62e7bd2 100644 --- a/clients/radarr_client.py +++ b/clients/radarr_client.py @@ -187,7 +187,7 @@ class RadarrClient: while page <= 20: # Safety limit data = self._get("/api/v3/history", { - "movieId": movie_id, + "movieId": str(movie_id), # Ensure it's a string "page": page, "pageSize": page_size, "sortKey": "date",