Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/a870f4ce70616ad54c9031aeac72f259b3df9070
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
7 deletions
@ -19,12 +19,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
{
writer . WriteLine ( "WEBVTT" ) ;
writer . WriteLine ( ) ;
writer . WriteLine ( "REGION" ) ;
writer . WriteLine ( "id:subtitle" ) ;
writer . WriteLine ( "width:80%" ) ;
writer . WriteLine ( "lines:3" ) ;
writer . WriteLine ( "regionanchor:50%,100%" ) ;
writer . WriteLine ( "viewportanchor:50%,90%" ) ;
writer . WriteLine ( "Region: id:subtitle width:80% lines:3 regionanchor:50%,100% viewportanchor:50%,90%" ) ;
writer . WriteLine ( ) ;
foreach ( var trackEvent in info . TrackEvents )
{
@ -39,7 +34,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
endTime = startTime . Add ( TimeSpan . FromMilliseconds ( 1 ) ) ;
}
writer . WriteLine ( @"{0:hh\:mm\:ss\.fff} --> {1:hh\:mm\:ss\.fff} region:subtitle ", startTime , endTime ) ;
writer . WriteLine ( @"{0:hh\:mm\:ss\.fff} --> {1:hh\:mm\:ss\.fff} region:subtitle line:90% ", startTime , endTime ) ;
var text = trackEvent . Text ;