fix: fixing webhook processing
Local Docker Build (Dev) / build-dev (pull_request) Successful in 19s

This commit is contained in:
2025-10-02 16:31:07 -04:00
parent 72bfcd9eed
commit 9f86b02665
5 changed files with 165 additions and 22 deletions
+2 -2
View File
@@ -94,8 +94,8 @@ def initialize_components():
tv_processor = TVProcessor(db, nfo_manager, path_mapper)
movie_processor = MovieProcessor(db, nfo_manager, path_mapper)
# Initialize webhook batcher
batcher = WebhookBatcher()
# Initialize webhook batcher with nfo_manager for comprehensive IMDb detection
batcher = WebhookBatcher(nfo_manager)
batcher.set_processors(tv_processor, movie_processor)
return {