Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/8de8c2c0c14140d61e70504adfed952603b9784d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
2 deletions
@ -5,7 +5,7 @@ import os
import pickle
import enzyme
from knowit import api
from knowit . api import know
from enzyme . exceptions import MalformedMKVError
from languages . custom_lang import CustomLanguage
@ -106,7 +106,7 @@ def parse_video_metadata(file, file_size, episode_file_id=None, movie_file_id=No
# if we have ffprobe available
if ffprobe_path :
data [ " ffprobe " ] = api. know( video_path = file , context = { " provider " : " ffmpeg " , " ffmpeg " : ffprobe_path } )
data [ " ffprobe " ] = know( video_path = file , context = { " provider " : " ffmpeg " , " ffmpeg " : ffprobe_path } )
# if not, we use enzyme for mkv files
else :
if os . path . splitext ( file ) [ 1 ] == " .mkv " :
@ -4,5 +4,7 @@ try:
except ImportError :
__version__ = ' unknown '
from . import rrule
__all__ = [ ' easter ' , ' parser ' , ' relativedelta ' , ' rrule ' , ' tz ' ,
' utils ' , ' zoneinfo ' ]
@ -15,6 +15,7 @@ from .score import compute_score
from . video import Video
from . import extensions
from . import http
from . import core
# patch subliminal's core functions
subliminal . scan_video = subliminal . core . scan_video = scan_video