Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4c178e918836ebb88af8d59740b2392e87ba127d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -285,7 +285,7 @@ namespace Jellyfin.Api.Controllers
// Due to CTS.Token calling ThrowIfDisposed (https://github.com/dotnet/runtime/issues/29970) we have to "cache" the token
// since it gets disposed when ffmpeg exits
var cancellationToken = cancellationTokenSource . Token ;
using var state = await StreamingHelpers . GetStreamingState (
var state = await StreamingHelpers . GetStreamingState (
streamingRequest ,
Request ,
_authContext ,
@ -1432,7 +1432,7 @@ namespace Jellyfin.Api.Controllers
var cancellationTokenSource = new CancellationTokenSource ( ) ;
var cancellationToken = cancellationTokenSource . Token ;
using var state = await StreamingHelpers . GetStreamingState (
var state = await StreamingHelpers . GetStreamingState (
streamingRequest ,
Request ,
_authContext ,
@ -427,7 +427,7 @@ namespace Jellyfin.Api.Controllers
StreamOptions = streamOptions
} ;
using var state = await StreamingHelpers . GetStreamingState (
var state = await StreamingHelpers . GetStreamingState (
streamingRequest ,
Request ,
_authContext ,