mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-19 12:24:59 -04:00
Fixed bad non-HI detection with embedded provider when forced subtitles available
This commit is contained in:
parent
74249eeb4c
commit
f50bcf34ac
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ def _check_hi_fallback(streams, languages):
|
|||
logger.debug("Checking HI fallback for '%r' language", language)
|
||||
|
||||
streams_ = [
|
||||
stream for stream in streams if stream.language.alpha3 == language.alpha3
|
||||
stream for stream in streams if stream.language.alpha3 == language.alpha3 and stream.language.forced == language.forced
|
||||
]
|
||||
if len(streams_) == 1 and streams_[0].disposition.hearing_impaired:
|
||||
stream_ = streams_[0]
|
||||
|
|
Loading…
Add table
Reference in a new issue