Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/afbe7e9989e1acee1950b6d4d7b687f78d4e9439
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
@ -25,17 +25,18 @@ class BSPlayerSubtitle(Subtitle):
provider_name = ' bsplayer '
hash_verifiable = True
def __init__ ( self , language , filename , subtype , video , link ):
def __init__ ( self , language , filename , subtype , video , link , subid ):
super ( BSPlayerSubtitle , self ) . __init__ ( language )
self . language = language
self . filename = filename
self . page_link = link
self . subtype = subtype
self . video = video
self . subid = subid
@property
def id ( self ) :
return self . page_link
return self . subid
@property
def release_info ( self ) :
@ -225,7 +226,7 @@ class BSPlayerProvider(Provider):
subName = item . find ( ' subName ' ) . text
subFormat = item . find ( ' subFormat ' ) . text
subtitles . append (
BSPlayerSubtitle ( subLang , subName , subFormat , video , subDownloadLink )
BSPlayerSubtitle ( subLang , subName , subFormat , video , subDownloadLink , subID )
)
return subtitles