Fixed missing subtitles computation when there's an embedded forced subtitles track.

pull/1581/head
morpheus65535 3 years ago
parent 95a509cf23
commit 249437deb4

@ -305,9 +305,9 @@ def list_missing_subtitles(no=None, epno=None, send_event=True):
if item not in actual_subtitles_list:
missing_subtitles_list.append(item)
# remove missing that have forced or hi subtitles for this language in existing
# remove missing that have 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…
Cancel
Save