Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cafc8356b202932f58d902a861bfbc3181b8e0f9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
6 deletions
@ -290,12 +290,15 @@ namespace MediaBrowser.Api.Playback.Hls
{
using ( var reader = new StreamReader ( fileStream ) )
{
var text = await reader . ReadToEndAsync ( ) . ConfigureAwait ( false ) ;
// If it appears in the playlist, it's done
if ( text . IndexOf ( segmentFilename , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
while ( ! reader . EndOfStream )
{
return GetSegmentResult ( segmentPath , segmentIndex , segmentLength , transcodingJob ) ;
var text = await reader . ReadLineAsync ( ) . ConfigureAwait ( false ) ;
// If it appears in the playlist, it's done
if ( text . IndexOf ( segmentFilename , StringComparison . OrdinalIgnoreCase ) ! = - 1 )
{
return GetSegmentResult ( segmentPath , segmentIndex , segmentLength , transcodingJob ) ;
}
}
}
}
@ -66,7 +66,7 @@ namespace MediaBrowser.Api.Playback
public string LiveTvStreamId { get ; set ; }
public int SegmentLength = 3 ;
public bool EnableGenericHlsSegmenter ;
public bool EnableGenericHlsSegmenter = false ;
public int HlsListSize
{
get