diff options
author | Vitiko <[email protected]> | 2023-06-13 17:53:51 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2023-06-13 17:53:51 -0400 |
commit | 6ac5bc7d4d7717254fc6de2a2b176a372f73378c (patch) | |
tree | efdda56b82d60f85c47f144d8ba75c89cb84690a /libs | |
parent | a82f52f84bdc1659f15f3d4131f5cc1f7a3ead6d (diff) | |
download | bazarr-6ac5bc7d4d7717254fc6de2a2b176a372f73378c.tar.gz bazarr-6ac5bc7d4d7717254fc6de2a2b176a372f73378c.zip |
Embedded Subtitles provider: Fix #2171
Diffstat (limited to 'libs')
-rw-r--r-- | libs/subliminal_patch/providers/embeddedsubtitles.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/subliminal_patch/providers/embeddedsubtitles.py b/libs/subliminal_patch/providers/embeddedsubtitles.py index 01f92f907..2342c1541 100644 --- a/libs/subliminal_patch/providers/embeddedsubtitles.py +++ b/libs/subliminal_patch/providers/embeddedsubtitles.py @@ -45,10 +45,9 @@ class EmbeddedSubtitle(Subtitle): self._matches: set = matches def get_matches(self, video): - if self.hearing_impaired: - self._matches.add("hearing_impaired") - + self._matches.add("hearing_impaired") self._matches.add("hash") + return self._matches @property |