Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/3f95784bb824484cb37bb0bfc91f491015f74cf4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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()
pull/1806/head^2 v1.0.4-beta.30
Vitiko 3 years ago
parent 4358790fa7
commit 3f95784bb8

@ -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

Loading…
Cancel
Save