Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/86d6c211af8ac0b81e05937fea1973ec78bc9226
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
11 additions and
1 deletions
@ -548,9 +548,19 @@ class SZAsyncProviderPool(SZProviderPool):
super ( SZAsyncProviderPool , self ) . __init__ ( * args , * * kwargs )
#: Maximum number of threads to use
self . max_workers = max_workers or len ( self . providers )
self . _max_workers_set = max_workers is not None
self . max_workers = ( max_workers or len ( self . providers ) ) or 1
logger . info ( " Using %d threads for %d providers ( %s ) " , self . max_workers , len ( self . providers ) , self . providers )
def update ( self , * args , * * kwargs ) :
updated = super ( ) . update ( * args , * * kwargs )
if ( len ( self . providers ) and not self . _max_workers_set ) and len ( self . providers ) != self . max_workers :
logger . debug ( " This pool will use %d threads from now on " , len ( self . providers ) )
self . max_workers = len ( self . providers )
return updated
def list_subtitles_provider ( self , provider , video , languages ) :
# list subtitles
provider_subtitles = None