Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8bb4cd017c74533599a7e8e743b65d8f833d678f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
5 deletions
@ -890,9 +890,9 @@ namespace Emby.Dlna.PlayTo
}
/// <inheritdoc />
public async Task CloseAllWebSockets ( CancellationToken cancellationToken )
public Task CloseAllWebSockets ( CancellationToken cancellationToken )
{
await Task . CompletedTask ;
return Task . CompletedTask ;
}
private class StreamParams
@ -1359,13 +1359,13 @@ namespace Emby.Server.Implementations.Session
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public Task SendServerShutdownNotification ( CancellationToken cancellationToken )
public async Task SendServerShutdownNotification ( CancellationToken cancellationToken )
{
CheckDisposed ( ) ;
CloseAllWebSockets ( cancellationToken ) . ConfigureAwait ( false ) ;
await CloseAllWebSockets ( cancellationToken ) . ConfigureAwait ( false ) ;
return SendMessageToSessions ( Sessions , SessionMessageType . ServerShuttingDown , string . Empty , cancellationToken ) ;
await SendMessageToSessions ( Sessions , SessionMessageType . ServerShuttingDown , string . Empty , cancellationToken ) . ConfigureAwait ( false ) ;
}
/// <summary>