diff --git a/bazarr/list_subtitles.py b/bazarr/list_subtitles.py index aa81b025e..7c162e1c0 100644 --- a/bazarr/list_subtitles.py +++ b/bazarr/list_subtitles.py @@ -413,7 +413,7 @@ def list_missing_subtitles_movies(no=None, send_event=True): # remove missing that have forced or hi subtitles for this language in existing for item in actual_subtitles_list: - if item[1] == 'True' or item[2] == 'True': + if item[2] == 'True': try: missing_subtitles_list.remove([item[0], 'False', 'False']) except ValueError: