Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/93612434e59a99f858a33667fae8835bb3473c53
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -181,11 +181,11 @@ def update_one_series(series_id, action):
return
else :
if action == ' updated ' and existing_series :
series = seriesParser ( series_data , action = ' update ' , tags_dict = tagsDict ,
series = seriesParser ( series_data [0 ] , action = ' update ' , tags_dict = tagsDict ,
serie_default_profile = serie_default_profile ,
audio_profiles = audio_profiles )
elif action == ' updated ' and not existing_series :
series = seriesParser ( series_data , action = ' insert ' , tags_dict = tagsDict ,
series = seriesParser ( series_data [0 ] , action = ' insert ' , tags_dict = tagsDict ,
serie_default_profile = serie_default_profile ,
audio_profiles = audio_profiles )
except Exception :
@ -93,7 +93,7 @@ def get_series_from_sonarr_api(url, apikey_sonarr, sonarr_series_id=None):
else :
result = r . json ( )
if isinstance ( result , dict ) :
return list ( result )
return [ result ]
else :
return r . json ( )