summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2021-10-30 08:11:35 -0400
committermorpheus65535 <[email protected]>2021-10-30 08:11:35 -0400
commit3bc700225fc69737b466ed560519696094aa987d (patch)
treee0712cc6a57c669970f990f7f6a7f78d57492960
parente6c1dba37bc9351c10612924d56177107d6a46a6 (diff)
downloadbazarr-3bc700225fc69737b466ed560519696094aa987d.tar.gz
bazarr-3bc700225fc69737b466ed560519696094aa987d.zip
Fixed movies missing subtitles computation when there's a forced subtitles track/file.
-rw-r--r--bazarr/list_subtitles.py2
1 files changed, 1 insertions, 1 deletions
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: