diff --git a/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs b/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs index e1f00951ec..ae4d91148b 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/NativeWebSocket.cs @@ -120,9 +120,9 @@ namespace MediaBrowser.Server.Implementations.HttpServer var result = await WebSocket.ReceiveAsync(buffer, cancellationToken).ConfigureAwait(false); - if (result.CloseStatus.HasValue) + if (result.CloseStatus.HasValue && result.CloseStatus.Value != WebSocketCloseStatus.Empty) { - _logger.Info("Web socket connection closed by client."); + _logger.Info("Web socket connection closed by client. Reason: {0}", result.CloseStatus.Value); return null; }