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

Merge remote-tracking branch 'origin/development' into development

pull/2213/head v1.3.1-beta.7
morpheus65535 2 years ago
commit 6b03e44fdc

@ -328,7 +328,7 @@ def _discard_possible_incomplete_subtitles(streams):
for stream in streams:
# 500 < 1200
if not stream.language.forced and stream.tags.frames < max_frames // 2:
if not stream.language.forced and stream.tags.frames < max_frames // 3:
logger.debug(
"Possible bad subtitle found: %s (%s frames - %s frames)",
stream,

@ -124,11 +124,9 @@ class HDBitsProvider(Provider):
continue
if episode is not None:
guessed = _memoized_episode_guess(subtitle["title"])
if guessed.get("episode") is not None and episode != guessed["episode"]:
logger.debug(
"Episode not matched: %s != %s", subtitle["title"], episode
)
eps = _memoized_episode_guess(subtitle["title"]).get("episode")
if eps is not None and episode not in eps:
logger.debug("Not matched: %s != %s", subtitle["title"], episode)
continue
parsed = HDBitsSubtitle(

Loading…
Cancel
Save