Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/90ae328447338d869c2b8e9117aa3df207afb7d0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
5 deletions
@ -4,9 +4,12 @@ import os
import logging
import re
import types
import platform
from logging . handlers import TimedRotatingFileHandler
from get_args import args
from config import settings
logger = logging . getLogger ( )
@ -72,6 +75,10 @@ def configure_logging(debug=False):
logging . getLogger ( " subzero " ) . setLevel ( logging . DEBUG )
logging . getLogger ( " git " ) . setLevel ( logging . DEBUG )
logging . getLogger ( " apprise " ) . setLevel ( logging . DEBUG )
logging . debug ( ' Bazarr version: %s ' , os . environ [ " BAZARR_VERSION " ] )
logging . debug ( ' Bazarr branch: %s ' , settings . general . branch )
logging . debug ( ' Operating system: %s ' , platform . platform ( ) )
logging . debug ( ' Python version: %s ' , platform . python_version ( ) )
else :
logging . getLogger ( " apscheduler " ) . setLevel ( logging . WARNING )
logging . getLogger ( " subliminal " ) . setLevel ( logging . CRITICAL )
@ -104,11 +104,6 @@ c.execute("UPDATE system SET configured = 0, updated = 0")
conn . commit ( )
c . close ( )
logging . debug ( ' Bazarr version: %s ' , bazarr_version )
logging . debug ( ' Bazarr branch: %s ' , settings . general . branch )
logging . debug ( ' Operating system: %s ' , platform . platform ( ) )
logging . debug ( ' Python version: %s ' , platform . python_version ( ) )
# Load languages in database
load_language_in_db ( )