From 9455847a0ec2121514d3fc08ff2e1e8bc9832b20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Sat, 15 Feb 2020 11:17:57 -0500 Subject: [PATCH] Revert "subliminal_patch: hearing impaired fix" This reverts commit 258dc3a7 --- libs/subliminal_patch/score.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/subliminal_patch/score.py b/libs/subliminal_patch/score.py index eaef2fb3e..c7b687e8c 100644 --- a/libs/subliminal_patch/score.py +++ b/libs/subliminal_patch/score.py @@ -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 and subtitle.hearing_impaired: + if hearing_impaired is not None and subtitle.hearing_impaired == hearing_impaired: logger.debug('Matched hearing_impaired') matches.add('hearing_impaired')