diff --git a/websocket-sharp/WebSocketFrame.cs b/websocket-sharp/WebSocketFrame.cs index 2c4d1841..67f4fb6e 100644 --- a/websocket-sharp/WebSocketFrame.cs +++ b/websocket-sharp/WebSocketFrame.cs @@ -150,7 +150,11 @@ namespace WebSocketSharp internal int ExtendedPayloadLengthCount { get { - return _payloadLength < 126 ? 0 : (_payloadLength == 126 ? 2 : 8); + return _payloadLength < 126 + ? 0 + : _payloadLength == 126 + ? 2 + : 8; } }