This commit is contained in:
2025-09-14 14:19:39 -04:00
parent a9c90d2939
commit f5ae8c7768
5 changed files with 90 additions and 37 deletions
+2 -2
View File
@@ -1392,7 +1392,7 @@ start_time = datetime.now(timezone.utc)
# Initialize components
db = NFOGuardDatabase(config.db_path)
nfo_manager = NFOManager(config.manager_brand)
path_mapper = PathMapper()
path_mapper = PathMapper(config) # FIXED: Pass config to PathMapper
tv_processor = TVProcessor(db, nfo_manager, path_mapper)
movie_processor = MovieProcessor(db, nfo_manager, path_mapper)
batcher = WebhookBatcher()
@@ -1683,7 +1683,7 @@ async def debug_movie_import_date(imdb_id: str):
"movie_digital_release": movie_obj.get("digitalRelease"),
"movie_in_cinemas": movie_obj.get("inCinemas"),
"movie_physical_release": movie_obj.get("physicalRelease"),
"movie_folder_path": movie_obj.get("folderPath")
"movie_folder_path": movie_obj.get("folderPath")
}
}
else: