diff options
author | Vitiko <[email protected]> | 2022-04-29 22:56:44 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-04-29 22:56:44 -0400 |
commit | 3f95784bb824484cb37bb0bfc91f491015f74cf4 (patch) | |
tree | 6325769388ec78e613d2002da51268b43f610458 /libs | |
parent | 4358790fa7cb4ac130ac7501bfad34c753cbec98 (diff) | |
download | bazarr-3f95784bb824484cb37bb0bfc91f491015f74cf4.tar.gz bazarr-3f95784bb824484cb37bb0bfc91f491015f74cf4.zip |
Subdivx Provider: avoid false positives on episodes searchv1.0.4-beta.30
The series search fallback was returning unrelated subtitles that
were impossible to detect with get_subtitle_from_archive()
Diffstat (limited to 'libs')
-rw-r--r-- | libs/subliminal_patch/providers/subdivx.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/subliminal_patch/providers/subdivx.py b/libs/subliminal_patch/providers/subdivx.py index b5e0b19da..68b4a33dc 100644 --- a/libs/subliminal_patch/providers/subdivx.py +++ b/libs/subliminal_patch/providers/subdivx.py @@ -108,10 +108,6 @@ class SubdivxSubtitlesProvider(Provider): f"{video.series} S{video.season:02}", ): subtitles += self._handle_multi_page_search(query, video) - - # Fallback - if not subtitles: - subtitles += self._handle_multi_page_search(video.series, video) else: # Subdvix has problems searching foreign movies if the year is # appended. A proper solution would be filtering results with the |