Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/74e14b4ca591b9043435ee1065827101379b1318
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
8 deletions
@ -943,11 +943,7 @@ namespace Emby.Dlna.PlayTo
request . DeviceId = values . GetValueOrDefault ( "DeviceId" ) ;
request . MediaSourceId = values . GetValueOrDefault ( "MediaSourceId" ) ;
request . LiveStreamId = values . GetValueOrDefault ( "LiveStreamId" ) ;
// Be careful, IsDirectStream==true by default (Static != false or not in query).
// See initialization of StreamingRequestDto in AudioController.GetAudioStream() method : Static = @static ?? false.
request . IsDirectStream = ! string . Equals ( "false" , values . GetValueOrDefault ( "Static" ) , StringComparison . OrdinalIgnoreCase ) ;
request . IsDirectStream = string . Equals ( "true" , values . GetValueOrDefault ( "Static" ) , StringComparison . OrdinalIgnoreCase ) ;
request . AudioStreamIndex = GetIntValue ( values , "AudioStreamIndex" ) ;
request . SubtitleStreamIndex = GetIntValue ( values , "SubtitleStreamIndex" ) ;
request . StartPositionTicks = GetLongValue ( values , "StartPositionTicks" ) ;
@ -630,10 +630,8 @@ namespace MediaBrowser.Model.Dlna
continue ;
}
// Be careful, IsDirectStream==true by default (Static != false or not in query).
// See initialization of StreamingRequestDto in AudioController.GetAudioStream() method : Static = @static ?? false.
if ( string . Equals ( pair . Name , "Static" , StringComparison . OrdinalIgnoreCase ) & &
string . Equals ( pair . Value , " tru e", StringComparison . OrdinalIgnoreCase ) )
string . Equals ( pair . Value , "false" , StringComparison . OrdinalIgnoreCase ) )
{
continue ;
}