Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/ab60b9276bd82952aa466a8568fef0e416903436?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -399,7 +399,7 @@ def manual_download_subtitle(path, language, hi, subtitle, provider, providers_a
if video :
min_score , max_score , scores = get_scores ( video , media_type )
try :
download_su ccess = download_su btitles( [ subtitle ] , providers = { provider } , provider_configs = providers_auth ,
download_su btitles( [ subtitle ] , providers = { provider } , provider_configs = providers_auth ,
pool_class = SZAsyncProviderPool ,
throttle_callback = None ) # fixme
logging . debug ( ' BAZARR Subtitles file downloaded for this file: ' + path )
@ -407,8 +407,9 @@ def manual_download_subtitle(path, language, hi, subtitle, provider, providers_a
logging . exception ( ' BAZARR Error downloading subtitles for this file ' + path )
return None
else :
if not download_success :
if not subtitle. is_valid ( ) :
logging . exception ( ' BAZARR Error downloading subtitles for this file ' + path )
return
try :
score = round ( subtitle . score / max_score * 100 , 2 )
saved_subtitles = save_subtitles ( video . name , [ subtitle ] , single = single ,