Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b4984a78fd1d07b46c25eb1c776e92205063771d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -6,6 +6,7 @@ using MediaBrowser.Controller;
using MediaBrowser.Controller.Dto ;
using MediaBrowser.Controller.Entities ;
using MediaBrowser.Controller.Library ;
using MediaBrowser.Model.Dto ;
using MediaBrowser.Model.IO ;
using System ;
using System.Collections.Generic ;
@ -91,11 +92,11 @@ namespace MediaBrowser.Api.Playback.Hls
/// <returns>Task{System.Object}.</returns>
public async Task < object > ProcessRequestAsync ( StreamState state )
{
if ( ! state . VideoRequest . VideoBitRate . HasValue )
if ( ! state . VideoRequest . VideoBitRate . HasValue & & ( ! state . VideoRequest . VideoCodec . HasValue | | state . VideoRequest . VideoCodec . Value ! = VideoCodecs . Copy ) )
{
throw new ArgumentException ( "A video bitrate is required" ) ;
}
if ( ! state . Request . AudioBitRate . HasValue )
if ( ! state . Request . AudioBitRate . HasValue & & ( ! state . Request . AudioCodec . HasValue | | state . Request . AudioCodec . Value ! = AudioCodecs . Copy ) )
{
throw new ArgumentException ( "An audio bitrate is required" ) ;
}