aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-29 21:41:22 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-29 21:41:22 -0500
commit858be5d7885587320b389328484bbdf102fc9363 (patch)
treef6342fc772592e0328093a4c2bf73c273c682a01 /MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs
parent8c34f863fb6c6c282a87837138b3d620170099d8 (diff)
update built in studio images
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs b/MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs
index 553aae285..a2dfb51d2 100644
--- a/MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs
+++ b/MediaBrowser.Server.Implementations/ServerManager/ServerManager.cs
@@ -243,7 +243,7 @@ namespace MediaBrowser.Server.Implementations.ServerManager
/// <param name="dataFunction">The function that generates the data to send, if there are any connected clients</param>
public void SendWebSocketMessage<T>(string messageType, Func<T> dataFunction)
{
- Task.Run(async () => await SendWebSocketMessageAsync(messageType, dataFunction, CancellationToken.None).ConfigureAwait(false));
+ SendWebSocketMessageAsync(messageType, dataFunction, CancellationToken.None);
}
/// <summary>