Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/2fcfa65a310c9e56f2a75873058e484fa42c7d07
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -20,6 +20,9 @@ from io import BytesIO
from fdsend import send_file
import urllib
from pympler . tracker import SummaryTracker
tracker = SummaryTracker ( )
from init_db import *
from get_languages import *
from get_providers import *
@ -215,6 +218,7 @@ def wanted_search_missing_subtitles_list():
ref = request . environ [ ' HTTP_REFERER ' ]
wanted_search_missing_subtitles ( )
tracker . print_diff ( )
redirect ( ref )
@ -8,9 +8,6 @@ from get_general_settings import *
from list_subtitles import *
from utils import *
from pympler . tracker import SummaryTracker
tracker = SummaryTracker ( )
# configure the cache
region . configure ( ' dogpile.cache.dbm ' , arguments = { ' filename ' : os . path . join ( os . path . dirname ( __file__ ) , ' data/cache/cachefile.dbm ' ) } )
@ -79,4 +76,3 @@ def wanted_search_missing_subtitles():
for episode in data :
wanted_download_subtitles ( episode [ 0 ] )
tracker . print_diff ( )