[Modify] Move it

This commit is contained in:
sta 2016-02-10 14:59:43 +09:00
parent 83f7f4ec8a
commit 2ca4c4592c

View File

@ -1005,6 +1005,9 @@ namespace WebSocketSharp
if (!checkIfValidHandshakeResponse (res, out msg)) if (!checkIfValidHandshakeResponse (res, out msg))
throw new WebSocketException (CloseStatusCode.ProtocolError, msg); throw new WebSocketException (CloseStatusCode.ProtocolError, msg);
if (_protocols != null)
_protocol = res.Headers["Sec-WebSocket-Protocol"];
var cookies = res.Cookies; var cookies = res.Cookies;
if (cookies.Count > 0) if (cookies.Count > 0)
_cookies.SetOrRemove (cookies); _cookies.SetOrRemove (cookies);
@ -1729,7 +1732,6 @@ namespace WebSocketSharp
if (_protocols == null || !_protocols.Contains (p => p == value)) if (_protocols == null || !_protocols.Contains (p => p == value))
return false; return false;
_protocol = value;
return true; return true;
} }