From 0a14859e8e7e8740b478613e458b76009edfb368 Mon Sep 17 00:00:00 2001 From: xRain Date: Sat, 22 Aug 2026 06:49:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20G.FUN.02=20=E5=BC=BA?= =?UTF-8?q?=E5=88=B6=E8=A7=84=E8=8C=83=EF=BC=9A=E6=9E=84=E9=80=A0=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E5=8F=82=E6=95=B0=E9=81=BF=E5=85=8D=E5=8F=8D=E5=BC=95?= =?UTF-8?q?=E5=8F=B7=E6=A0=87=E8=AF=86=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/WsTypes.cj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/WsTypes.cj b/src/common/WsTypes.cj index fe10cb3..f2b69bd 100644 --- a/src/common/WsTypes.cj +++ b/src/common/WsTypes.cj @@ -77,8 +77,8 @@ public class WebSocketMessage { public let `type`: MessageType public let bytes: Array - public init(`type`: MessageType, bytes: Array) { - this.`type` = `type` + public init(msgType: MessageType, bytes: Array) { + this.`type` = msgType this.bytes = bytes }