Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/6192df6019bcd1c22e1c3ae2da4f83957b8194a5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
@ -70,8 +70,8 @@ class SystemSettings(Resource):
TableLanguagesProfiles . name : item [ ' name ' ] ,
TableLanguagesProfiles . cutoff : item [ ' cutoff ' ] if item [ ' cutoff ' ] != ' null ' else None ,
TableLanguagesProfiles . items : json . dumps ( item [ ' items ' ] ) ,
TableLanguagesProfiles . mustContain : item [ ' must _c ontain' ] ,
TableLanguagesProfiles . mustNotContain : item [ ' must _not_c ontain' ] ,
TableLanguagesProfiles . mustContain : item [ ' must C ontain' ] ,
TableLanguagesProfiles . mustNotContain : item [ ' must NotC ontain' ] ,
} ) . execute ( )
for profileId in existing :
# Unassign this profileId from series and movies
@ -172,6 +172,8 @@ const Table: FunctionComponent = () => {
name : "" ,
items : [ ] ,
cutoff : null ,
mustContain : [ ] ,
mustNotContain : [ ] ,
} ;
showModal ( "profile" , profile ) ;
} }