diff options
author | morpheus65535 <[email protected]> | 2021-10-10 19:05:20 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-10-10 19:05:20 -0400 |
commit | 249437deb4f53764f9120dfa646de5bd9e63503e (patch) | |
tree | 48e2a93b374b5d3a66887439b1fd6b3e1790e694 | |
parent | 95a509cf2366c7b0792b3d70da4b4759a76bea0c (diff) | |
download | bazarr-249437deb4f53764f9120dfa646de5bd9e63503e.tar.gz bazarr-249437deb4f53764f9120dfa646de5bd9e63503e.zip |
Fixed missing subtitles computation when there's an embedded forced subtitles track.
-rw-r--r-- | bazarr/list_subtitles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bazarr/list_subtitles.py b/bazarr/list_subtitles.py index 8f6bbb11d..10d1a87c2 100644 --- a/bazarr/list_subtitles.py +++ b/bazarr/list_subtitles.py @@ -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: |