aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Session/WebSocketController.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-06 14:48:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-06 14:48:04 -0400
commitbd5bf32aba45f3a4dff4f883505ddf9fb528e53a (patch)
tree0f337d7acbbd18963827228062cf4df2d0384bf0 /MediaBrowser.Server.Implementations/Session/WebSocketController.cs
parent6e58ae31bd3c4da1944fb2b44a6a26a3c7e982fb (diff)
fix web socket message name for library change
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session/WebSocketController.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Session/WebSocketController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Session/WebSocketController.cs b/MediaBrowser.Server.Implementations/Session/WebSocketController.cs
index 6bbebf156..70d7ac071 100644
--- a/MediaBrowser.Server.Implementations/Session/WebSocketController.cs
+++ b/MediaBrowser.Server.Implementations/Session/WebSocketController.cs
@@ -123,7 +123,7 @@ namespace MediaBrowser.Server.Implementations.Session
return socket.SendAsync(new WebSocketMessage<LibraryUpdateInfo>
{
- MessageType = "Playstate",
+ MessageType = "LibraryChanged",
Data = info
}, cancellationToken);