Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/4fa2a32d81e263ef51140e2ae8259a02fdfb0d7d You should set ROOT_URL correctly, otherwise the web may not work correctly.

Apply suggestions from code review

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/5631/head
BrianCArnold 4 years ago committed by GitHub
parent af03b280bc
commit 4fa2a32d81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -325,10 +325,10 @@ namespace Jellyfin.Api.Controllers
{
if (string.IsNullOrWhiteSpace(command.Header))
{
command.Header = "Message from Server";
command.Header = "Message from Server";
}
_sessionManager.SendMessageCommand(RequestHelpers.GetSession(_sessionManager, _authContext, Request).Id, sessionId, nullCorrectedCommand, CancellationToken.None);
_sessionManager.SendMessageCommand(RequestHelpers.GetSession(_sessionManager, _authContext, Request).Id, sessionId, command, CancellationToken.None);
return NoContent();
}

Loading…
Cancel
Save