radarr api issues again

This commit is contained in:
2025-09-08 11:41:30 -04:00
parent 1ea7edeefa
commit e89eb73bb4
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
0.3.0 0.3.1
+4
View File
@@ -19,6 +19,10 @@ except ImportError:
class DummyPathMapper: class DummyPathMapper:
def analyze_import_source_path(self, path): def analyze_import_source_path(self, path):
return "/downloads/" in path.lower(), "basic_check" 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() path_mapper = DummyPathMapper()