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

Switch to named placeholders

pull/10357/head
herby2212 2 years ago
parent ace89e4597
commit 56aa37a314

@ -667,7 +667,7 @@ namespace Emby.Server.Implementations.Session
foreach (var session in inactiveSessions)
{
_logger.LogDebug("Session {0} has been inactive for {1} minutes. Stopping it.", session.Id, _config.Configuration.InactiveSessionThreshold);
_logger.LogDebug("Session {Session} has been inactive for {InactiveTime} minutes. Stopping it.", session.Id, _config.Configuration.InactiveSessionThreshold);
try
{
@ -684,7 +684,7 @@ namespace Emby.Server.Implementations.Session
}
catch (Exception ex)
{
_logger.LogDebug(ex, "Error calling SendPlaystateCommand for stopping inactive session {0}.", session.Id);
_logger.LogDebug(ex, "Error calling SendPlaystateCommand for stopping inactive session {Session}.", session.Id);
}
}
}

Loading…
Cancel
Save