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

Fixed issue with soustitreseu when guessit is unable to guess episode or season from release name.

pull/2575/head
morpheus65535 9 months ago
parent 48019281d0
commit ebf3471eec

@ -277,7 +277,11 @@ class SoustitreseuProvider(Provider, ProviderSubtitleArchiveMixin):
release = name[:-4].lower().rstrip('tag').rstrip('en').rstrip('fr')
_guess = guessit(release)
if isinstance(video, Episode):
if video.episode != _guess['episode'] or video.season != _guess['season']:
try:
if video.episode != _guess['episode'] or video.season != _guess['season']:
continue
except KeyError:
# episode or season are missing from guessit result
continue
matches = set()

Loading…
Cancel
Save