mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
Fix WebSocket disconnecting when exception is thrown during processing (#11395)
This commit is contained in:
@@ -198,6 +198,8 @@ namespace Emby.Server.Implementations.HttpServer
|
|||||||
await SendKeepAliveResponse().ConfigureAwait(false);
|
await SendKeepAliveResponse().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
await OnReceive(
|
await OnReceive(
|
||||||
new WebSocketMessageInfo
|
new WebSocketMessageInfo
|
||||||
@@ -207,6 +209,11 @@ namespace Emby.Server.Implementations.HttpServer
|
|||||||
Connection = this
|
Connection = this
|
||||||
}).ConfigureAwait(false);
|
}).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
catch (Exception exception)
|
||||||
|
{
|
||||||
|
_logger.LogWarning(exception, "Failed to process WebSocket message");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal InboundWebSocketMessage<object>? DeserializeWebSocketMessage(ReadOnlySequence<byte> bytes, out long bytesConsumed)
|
internal InboundWebSocketMessage<object>? DeserializeWebSocketMessage(ReadOnlySequence<byte> bytes, out long bytesConsumed)
|
||||||
|
|||||||
Reference in New Issue
Block a user