Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/064b3d58cc4cec91743fc48b4605a6acb1942448
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
3 deletions
@ -182,6 +182,8 @@ namespace MediaBrowser.Api.Playback.Progressive
return ToStaticFileResult ( outputPath , isHeadRequest ) ;
}
Response . AddHeader ( "Accept-Ranges" , "none" ) ;
return GetStreamResult ( state , isHeadRequest ) . Result ;
}
@ -381,6 +381,7 @@ namespace MediaBrowser.Common.Implementations
if ( disposable ! = null )
{
Logger . Info ( "Registering " + disposable . GetType ( ) . Name ) ;
DisposableParts . Add ( disposable ) ;
}
}
@ -458,7 +459,10 @@ namespace MediaBrowser.Common.Implementations
if ( manageLiftime )
{
DisposableParts . AddRange ( parts . OfType < IDisposable > ( ) ) ;
lock ( DisposableParts )
{
DisposableParts . AddRange ( parts . OfType < IDisposable > ( ) ) ;
}
}
return parts ;
@ -300,13 +300,13 @@ namespace MediaBrowser.Controller.Library
{
var strippedOverview = string . IsNullOrEmpty ( item . Overview ) ? item . Overview : item . Overview . StripHtml ( ) ;
if ( fields. Contains ( ItemFields . Overview ) )
if ( hasOverview )
{
dto . Overview = strippedOverview ;
}
// Only supply the html version if there was actually html content
if ( fields. Contains ( ItemFields . OverviewHtml ) & & ! string . Equals ( item . Overview , strippedOverview ) )
if ( hasHtmlOverview )
{
dto . OverviewHtml = item . Overview ;
}