summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorVitiko <[email protected]>2023-06-13 17:53:51 -0400
committerVitiko <[email protected]>2023-06-13 17:53:51 -0400
commit6ac5bc7d4d7717254fc6de2a2b176a372f73378c (patch)
treeefdda56b82d60f85c47f144d8ba75c89cb84690a /libs
parenta82f52f84bdc1659f15f3d4131f5cc1f7a3ead6d (diff)
downloadbazarr-6ac5bc7d4d7717254fc6de2a2b176a372f73378c.tar.gz
bazarr-6ac5bc7d4d7717254fc6de2a2b176a372f73378c.zip
Embedded Subtitles provider: Fix #2171
Diffstat (limited to 'libs')
-rw-r--r--libs/subliminal_patch/providers/embeddedsubtitles.py5
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