Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/6b959f40ac208094da0a1d41d8c8a42df9a87876
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
4 deletions
@ -565,13 +565,12 @@ namespace Emby.Server.Implementations.HttpServer
}
catch ( NotSupportedException )
{
}
}
if ( ! string . IsNullOrWhiteSpace ( rangeHeader ) & & totalContentLength . HasValue )
{
var hasHeaders = new RangeRequestWriter ( rangeHeader , totalContentLength . Value , stream , contentType , isHeadRequest , _logger )
var hasHeaders = new RangeRequestWriter ( rangeHeader , totalContentLength . Value , stream , contentType , isHeadRequest )
{
OnComplete = options . OnComplete
} ;
@ -608,8 +607,11 @@ namespace Emby.Server.Implementations.HttpServer
/// <summary>
/// Adds the caching responseHeaders.
/// </summary>
private void AddCachingHeaders ( IDictionary < string , string > responseHeaders , TimeSpan ? cacheDuration ,
bool noCache , DateTime ? lastModifiedDate )
private void AddCachingHeaders (
IDictionary < string , string > responseHeaders ,
TimeSpan ? cacheDuration ,
bool noCache ,
DateTime ? lastModifiedDate )
{
if ( noCache )
{