mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-13 10:30:55 +00:00
Subdivx Provider: avoid false positives on episodes search
The series search fallback was returning unrelated subtitles that were impossible to detect with get_subtitle_from_archive()
This commit is contained in:
parent
4358790fa7
commit
3f95784bb8
1 changed files with 0 additions and 4 deletions
|
@ -108,10 +108,6 @@ class SubdivxSubtitlesProvider(Provider):
|
||||||
f"{video.series} S{video.season:02}",
|
f"{video.series} S{video.season:02}",
|
||||||
):
|
):
|
||||||
subtitles += self._handle_multi_page_search(query, video)
|
subtitles += self._handle_multi_page_search(query, video)
|
||||||
|
|
||||||
# Fallback
|
|
||||||
if not subtitles:
|
|
||||||
subtitles += self._handle_multi_page_search(video.series, video)
|
|
||||||
else:
|
else:
|
||||||
# Subdvix has problems searching foreign movies if the year is
|
# Subdvix has problems searching foreign movies if the year is
|
||||||
# appended. A proper solution would be filtering results with the
|
# appended. A proper solution would be filtering results with the
|
||||||
|
|
Loading…
Reference in a new issue