mirror of https://github.com/morpheus65535/bazarr
Merge pull request #823 from GermanG/hearing_impaired_match_fix
subliminal_patch: hearing impaired fix
This commit is contained in:
commit
3d87c6ee15
|
@ -113,7 +113,7 @@ def compute_score(matches, subtitle, video, hearing_impaired=None):
|
|||
matches |= {'title', 'year'}
|
||||
|
||||
# handle hearing impaired
|
||||
if hearing_impaired is not None and subtitle.hearing_impaired == hearing_impaired:
|
||||
if hearing_impaired is not None and subtitle.hearing_impaired == hearing_impaired and subtitle.hearing_impaired:
|
||||
logger.debug('Matched hearing_impaired')
|
||||
matches.add('hearing_impaired')
|
||||
|
||||
|
|
Loading…
Reference in New Issue