mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixes #406 - Dashboard not refreshing
This commit is contained in:
parent
6d407033ce
commit
cbf061d5f6
@ -1,4 +1,5 @@
|
|||||||
using MediaBrowser.Api;
|
using System.Threading;
|
||||||
|
using MediaBrowser.Api;
|
||||||
using MediaBrowser.Common;
|
using MediaBrowser.Common;
|
||||||
using MediaBrowser.Common.Configuration;
|
using MediaBrowser.Common.Configuration;
|
||||||
using MediaBrowser.Common.Constants;
|
using MediaBrowser.Common.Constants;
|
||||||
@ -512,6 +513,16 @@ namespace MediaBrowser.ServerApplication
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public override void Restart()
|
public override void Restart()
|
||||||
{
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var task = ServerManager.SendWebSocketMessageAsync("ServerRestarting", () => string.Empty, CancellationToken.None);
|
||||||
|
task.Wait();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.ErrorException("Error sending server restart web socket message", ex);
|
||||||
|
}
|
||||||
|
|
||||||
App.Instance.Restart();
|
App.Instance.Restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -622,6 +633,16 @@ namespace MediaBrowser.ServerApplication
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public override void Shutdown()
|
public override void Shutdown()
|
||||||
{
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var task = ServerManager.SendWebSocketMessageAsync("ServerShuttingDown", () => string.Empty, CancellationToken.None);
|
||||||
|
task.Wait();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.ErrorException("Error sending server shutdown web socket message", ex);
|
||||||
|
}
|
||||||
|
|
||||||
App.Instance.Dispatcher.Invoke(App.Instance.Shutdown);
|
App.Instance.Dispatcher.Invoke(App.Instance.Shutdown);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user