From ff199aafe56768f94033eada51e5b14faa80bca9 Mon Sep 17 00:00:00 2001 From: Gareth Kirwan Date: Sat, 14 Dec 2024 15:49:58 +0700 Subject: [PATCH] fixup! Huobi: Add V2 websocket support --- exchanges/huobi/huobi_websocket.go | 1 + 1 file changed, 1 insertion(+) 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 } }