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
+4
View File
@@ -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()