[Modify] Polish it

This commit is contained in:
sta 2018-02-08 16:48:38 +09:00
parent e9a9e925c8
commit 0791de4153

View File

@ -822,7 +822,7 @@ namespace WebSocketSharp
)
{
var len = value.Length;
var seps = new string (separators);
var separator = new string (separators);
var buff = new StringBuilder (32);
var end = len - 1;
@ -853,7 +853,7 @@ namespace WebSocketSharp
continue;
}
if (seps.Contains (c)) {
if (separator.Contains (c)) {
if (quoted)
continue;