Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/cf4571ba8604fbdda84d1f775b9c6888e06018a2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
0 deletions
@ -76,6 +76,10 @@ def postprocessSeries(item):
if ' audio_language ' in item and item [ ' audio_language ' ] is not None :
item [ ' audio_language ' ] = get_audio_profile_languages ( series_id = item [ ' sonarrSeriesId ' ] )
# Make sure profileId is a valid None value
if ' profileId ' in item and item [ ' profileId ' ] in None_Keys :
item [ ' profileId ' ] = None
if ' alternateTitles ' in item :
if item [ ' alternateTitles ' ] is None :
item [ ' alternativeTitles ' ] = [ ]
@ -163,6 +167,10 @@ def postprocessMovie(item):
if ' audio_language ' in item and item [ ' audio_language ' ] is not None :
item [ ' audio_language ' ] = get_audio_profile_languages ( movie_id = item [ ' radarrId ' ] )
# Make sure profileId is a valid None value
if ' profileId ' in item and item [ ' profileId ' ] in None_Keys :
item [ ' profileId ' ] = None
# Parse alternate titles
if ' alternativeTitles ' in item :
if item [ ' alternativeTitles ' ] is None :