mirror of https://github.com/morpheus65535/bazarr
Fixed movies missing subtitles computation when there's a forced subtitles track/file.
This commit is contained in:
parent
e6c1dba37b
commit
3bc700225f
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue