From 6b10c41bab72c4b5a94782bdbb9d85b8a09ee2d6 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 24 Mar 2021 19:34:38 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/ChunkStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Net/ChunkStream.cs b/websocket-sharp/Net/ChunkStream.cs index 4f81db00..9e0e9478 100644 --- a/websocket-sharp/Net/ChunkStream.cs +++ b/websocket-sharp/Net/ChunkStream.cs @@ -89,7 +89,7 @@ namespace WebSocketSharp.Net public bool WantMore { get { - return _state != InputChunkState.End; + return _state < InputChunkState.End; } }