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

Replace append by insert for

pull/56/merge
morpheus65535 7 years ago
parent 64846c0f1d
commit 5cdde92696

@ -2,7 +2,7 @@ bazarr_version = '0.3.2'
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), 'libs/'))
sys.path.insert(0,os.path.join(os.path.dirname(__file__), 'libs/'))
from bottle import route, run, template, static_file, request, redirect, response
import bottle

Loading…
Cancel
Save