Merge pull request #3315 from crobibero/dashboard-update

Add MessageId to websocket message, fix ws exception
This commit is contained in:
dkanada
2020-06-15 10:55:33 +09:00
committed by GitHub
5 changed files with 149 additions and 4 deletions

View File

@@ -156,6 +156,7 @@ namespace MediaBrowser.Controller.Net
await connection.SendAsync(
new WebSocketMessage<TReturnDataType>
{
MessageId = Guid.NewGuid(),
MessageType = Name,
Data = data
},