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()