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

Merge branch 'development'

pull/56/merge
morpheus65535 7 years ago
commit 4d618b8da4

@ -10,6 +10,7 @@ langdetect
Pillow
py-pretty
pycountry
pytz
requests
subliminal
tzlocal

@ -7,10 +7,11 @@ from check_update import *
from apscheduler.schedulers.background import BackgroundScheduler
from datetime import datetime
import pytz
from tzlocal import get_localzone
if str(get_localzone()) == "local":
scheduler = BackgroundScheduler(timezone=utc)
scheduler = BackgroundScheduler(timezone=pytz.timezone('UTC'))
else:
scheduler = BackgroundScheduler()

Loading…
Cancel
Save