diff options
author | Vitiko <[email protected]> | 2022-05-18 00:16:55 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-05-18 00:16:55 -0400 |
commit | 770ae2d6f60d57d5a119b7158f07b8bb06656dac (patch) | |
tree | ee0b4044a0710f7fc72a5f8b332b10767c63d238 | |
parent | b96fd9326979b08876ef9818bfab0a735dcc0f06 (diff) | |
download | bazarr-1.0.5-beta.10.tar.gz bazarr-1.0.5-beta.10.zip |
Embedded Subtitles provider: fix cached streams with HI fallbackv1.0.5-beta.10
Fix #1884
-rw-r--r-- | libs/subliminal_patch/providers/embeddedsubtitles.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/subliminal_patch/providers/embeddedsubtitles.py b/libs/subliminal_patch/providers/embeddedsubtitles.py index d738ee024..0cff01a8e 100644 --- a/libs/subliminal_patch/providers/embeddedsubtitles.py +++ b/libs/subliminal_patch/providers/embeddedsubtitles.py @@ -254,6 +254,7 @@ def _check_hi_fallback(streams, languages): streams_[0], ) streams_[0].disposition.hearing_impaired = False + streams_[0].disposition.generic = True elif all(stream.disposition.hearing_impaired for stream in streams_): for stream in streams_: @@ -262,6 +263,7 @@ def _check_hi_fallback(streams, languages): stream, ) stream.disposition.hearing_impaired = False + stream.disposition.generic = True else: logger.debug("HI fallback not needed: %s", streams_) |