Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/5ba92b21425b1b50eec75d4bc295f25a1a8312b0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -134,8 +134,8 @@ class TitloviProvider(Provider, ProviderSubtitleArchiveMixin):
def initialize ( self ) :
self . session = Session ( )
self . session . headers [ ' User-Agent ' ] = ' Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) ' \
' Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729) '
self . session . headers [
' User-Agent ' ] = ' Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36 '
logger . debug ( ' User-Agent set to %s ' , self . session . headers [ ' User-Agent ' ] )
self . session . headers [ ' Referer ' ] = self . server_url
logger . debug ( ' Referer set to %s ' , self . session . headers [ ' Referer ' ] )
@ -223,7 +223,7 @@ class TitloviProvider(Provider, ProviderSubtitleArchiveMixin):
if match :
try :
# decode language
lang = Language . fromtitlovi ( match . group ( ' lang ' ) + match . group ( ' script ' ) )
lang = Language . fromtitlovi ( match . group ( ' lang ' ) + match . group ( ' script ' ) )
except ValueError :
continue