[Modify] Replace it

This commit is contained in:
sta 2018-02-10 16:58:42 +09:00
parent 6da865ac52
commit 9205a669a7

View File

@ -641,7 +641,7 @@ namespace WebSocketSharp
if (c >= 0x7f)
return false;
if (_tspecials.Contains (c))
if (_tspecials.IndexOf (c) > -1)
return false;
}