diff --git a/exchanges/huobi/huobi_websocket.go b/exchanges/huobi/huobi_websocket.go index 269d72e46f5..0d9c5f5b8a5 100644 --- a/exchanges/huobi/huobi_websocket.go +++ b/exchanges/huobi/huobi_websocket.go @@ -138,6 +138,7 @@ func (h *HUOBI) wsHandleData(respRaw []byte) error { if !h.Websocket.Match.IncomingWithData(op+":"+ch, respRaw) { return fmt.Errorf("%w: %s:%s", stream.ErrNoMessageListener, op, ch) } + return nil } }