diff --git a/client.go b/client.go index 51acf24..b88f8a9 100644 --- a/client.go +++ b/client.go @@ -316,9 +316,9 @@ func (d *Dialer) Dial(urlStr string, requestHeader http.Header) (*Conn, *http.Re n, _ := io.ReadFull(resp.Body, buf) resp.Body = ioutil.NopCloser(bytes.NewReader(buf[:n])) return nil, resp, ErrBadHandshake - } else { - resp.Body = ioutil.NopCloser(bytes.NewReader([]byte{})) } + + resp.Body = ioutil.NopCloser(bytes.NewReader([]byte{})) conn.subprotocol = resp.Header.Get("Sec-Websocket-Protocol")