From 3bc700225fc69737b466ed560519696094aa987d Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Sat, 30 Oct 2021 08:11:35 -0400 Subject: [PATCH] Fixed movies missing subtitles computation when there's a forced subtitles track/file. --- bazarr/list_subtitles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: