From e89eb73bb4c1c0a6f7669eb70470506d396ab387 Mon Sep 17 00:00:00 2001 From: SBCrumb Date: Mon, 8 Sep 2025 11:41:30 -0400 Subject: [PATCH] radarr api issues again --- VERSION | 2 +- clients/radarr_client.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0d91a54..9e11b32 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.3.1 diff --git a/clients/radarr_client.py b/clients/radarr_client.py index 59b1053..55c557c 100644 --- a/clients/radarr_client.py +++ b/clients/radarr_client.py @@ -19,6 +19,10 @@ except ImportError: class DummyPathMapper: def analyze_import_source_path(self, path): return "/downloads/" in path.lower(), "basic_check" + + def is_download_path(self, path): + return "/downloads/" in str(path).lower() or "/completed/" in str(path).lower() + path_mapper = DummyPathMapper()