diff --git a/websocket-sharp/WebSocketFrame.cs b/websocket-sharp/WebSocketFrame.cs index efd63ab4..bf247a10 100644 --- a/websocket-sharp/WebSocketFrame.cs +++ b/websocket-sharp/WebSocketFrame.cs @@ -483,7 +483,7 @@ Extended Payload Length: {7} : isControl (opcode) && fin == Fin.More ? "A control frame is fragmented." : isControl (opcode) && payloadLen > 125 - ? "A control frame has a long payload length than the allowable max length." + ? "A control frame has a long payload length." : !isData (opcode) && rsv1 == Rsv.On ? "A non data frame is compressed." : null;