feat: Add decrypt_labs_api_key to Config initialization and change duplicate track log level to debug

This commit is contained in:
Andy
2025-09-25 06:22:50 +00:00
parent 98ecf6f876
commit 63b7a49c1a
2 changed files with 2 additions and 1 deletions

View File

@@ -88,6 +88,7 @@ class Config:
self.tag_group_name: bool = kwargs.get("tag_group_name", True)
self.tag_imdb_tmdb: bool = kwargs.get("tag_imdb_tmdb", True)
self.tmdb_api_key: str = kwargs.get("tmdb_api_key") or ""
self.decrypt_labs_api_key: str = kwargs.get("decrypt_labs_api_key") or ""
self.update_checks: bool = kwargs.get("update_checks", True)
self.update_check_interval: int = kwargs.get("update_check_interval", 24)
self.scene_naming: bool = kwargs.get("scene_naming", True)