[Modify] Polish it

This commit is contained in:
sta 2019-05-06 16:17:32 +09:00
parent a765f7b53d
commit 26f9994cbb

View File

@ -664,7 +664,7 @@ namespace WebSocketSharp
if (c < 0x20)
return false;
if (c >= 0x7f)
if (c > 0x7e)
return false;
if (_tspecials.IndexOf (c) > -1)