diff --git a/bazarr/get_movies.py b/bazarr/get_movies.py index 18831be20..d40a105c0 100644 --- a/bazarr/get_movies.py +++ b/bazarr/get_movies.py @@ -116,8 +116,9 @@ def update_movies(): for added_movie in movies_to_add: store_subtitles_movie(path_replace_movie(added_movie[1])) - for updated_movie in movies_to_update: - store_subtitles_movie(path_replace_movie(updated_movie[1])) + # TODO: Commented until I find a way to make it store only episodes really updated. + # for updated_movie in movies_to_update: + # store_subtitles_movie(path_replace_movie(updated_movie[1])) logging.debug('BAZARR All movies synced from Radarr into database.')