From 3cd011663d5fb27e7fa899cfff75353ba053ce63 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Fri, 5 Dec 2025 07:35:32 -0500 Subject: [PATCH] Fixed other stuff with jobs manager. #3078 --- bazarr/radarr/sync/movies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/radarr/sync/movies.py b/bazarr/radarr/sync/movies.py index d04309cf4..777627d06 100644 --- a/bazarr/radarr/sync/movies.py +++ b/bazarr/radarr/sync/movies.py @@ -325,7 +325,7 @@ def update_one_movie(movie_id, action, defer_search=False, **kwargs): mapped_movie_path = path_mappings.path_replace_movie(movie["path"]) if os.path.exists(mapped_movie_path): logging.debug(f'BAZARR downloading missing subtitles for this movie: {mapped_movie_path}') - movies_download_subtitles(movie_id, job_sub_function=True) + movies_download_subtitles(no=movie_id, job_id=kwargs.get('job_id'), job_sub_function=True) else: logging.debug(f'BAZARR cannot find this file yet (Radarr may be slow to import movie between disks?). ' f'Searching for missing subtitles is deferred until scheduled task execution for this movie: '