Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/2a8a4030b9e032392f172e73679ba47bdb060b77
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -70,7 +70,7 @@ class SystemSettings(Resource):
items = json . dumps ( item [ ' items ' ] ) ,
mustContain = str ( item [ ' mustContain ' ] ) ,
mustNotContain = str ( item [ ' mustNotContain ' ] ) ,
originalFormat = item [ ' originalFormat ' ] if item [ ' originalFormat ' ] != ' null ' else None ,
originalFormat = int ( item [ ' originalFormat ' ] ) if item [ ' originalFormat ' ] != ' null ' else None ,
)
. where ( TableLanguagesProfiles . profileId == item [ ' profileId ' ] ) )
existing . remove ( item [ ' profileId ' ] )
@ -85,7 +85,7 @@ class SystemSettings(Resource):
items = json . dumps ( item [ ' items ' ] ) ,
mustContain = str ( item [ ' mustContain ' ] ) ,
mustNotContain = str ( item [ ' mustNotContain ' ] ) ,
originalFormat = item [ ' originalFormat ' ] if item [ ' originalFormat ' ] != ' null ' else None ,
originalFormat = int ( item [ ' originalFormat ' ] ) if item [ ' originalFormat ' ] != ' null ' else None ,
) )
for profileId in existing :
# Remove deleted profiles