Administrator
2025-12-12 4c871a6fb1cd99c1d345d501a3dedfd468b00824
src/main/java/com/xcong/excoin/modules/okxNewPrice/OkxQuantWebSocketClient.java
@@ -297,13 +297,13 @@
    private void processPushData(JSONObject response) {
        JSONObject arg = response.getJSONObject("arg");
        if (arg == null) {
            log.warn("无效的推送数据,缺少 'arg' 字段");
            log.warn("无效的推送数据,缺少 'arg' 字段 :{}",response);
            return;
        }
        String channel = arg.getString("channel");
        if (channel == null) {
            log.warn("无效的推送数据,缺少 'channel' 字段");
            log.warn("无效的推送数据,缺少 'channel' 字段{}",response);
            return;
        }