Merge pull request #27 from RealBeBetter/main

fix: 读取客户端发送的请求报文错误 日志输出异常
This commit is contained in:
zongzibinbin
2023-06-06 22:44:48 +08:00
committed by GitHub

View File

@@ -93,6 +93,7 @@ public class NettyWebSocketServerHandler extends SimpleChannelInboundHandler<Tex
case AUTHORIZE:
getService().authorize(ctx.channel(), JSONUtil.toBean(wsBaseReq.getData(), WSAuthorize.class));
log.info("主动认证 = " + msg.text());
break;
default:
log.info("未知类型");
}