fix: Remove invalid webhook_secret parameter from SonarrClient
Local Docker Build (Dev) / build-dev (push) Successful in 23s

SonarrClient constructor only accepts base_url and api_key parameters.
Version bump to 2.0.2-clean
This commit is contained in:
2025-09-26 13:47:11 -04:00
parent 4411804725
commit 12767d7350
2 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
2.0.1-clean
2.0.2-clean
+1 -3
View File
@@ -1730,9 +1730,7 @@ path_mapper = PathMapper(config) # FIXED: Pass config to PathMapper
# Initialize Sonarr client using environment variables
sonarr = SonarrClient(
base_url=os.environ.get("SONARR_URL", ""),
api_key=os.environ.get("SONARR_API_KEY", ""),
webhook_secret=os.environ.get("SONARR_WEBHOOK_SECRET", ""),
enabled=bool(os.environ.get("SONARR_URL", ""))
api_key=os.environ.get("SONARR_API_KEY", "")
)
# Use new clean TV processor