From edfa0189210941246dd4103ef4939481132b87c0 Mon Sep 17 00:00:00 2001 From: YeMingfei666 <1619116647@qq.com> Date: Tue, 25 Mar 2025 21:38:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20websocket=E5=BF=83=E8=B7=B3=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=B9=B3=E5=8F=B0=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/websocket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/websocket.ts b/src/utils/websocket.ts index 4b0fcdb..7dadc34 100644 --- a/src/utils/websocket.ts +++ b/src/utils/websocket.ts @@ -94,7 +94,7 @@ class WebSocketManager { // 消息回执 public onMessageHandler(data: any) { if (this.client && this.connected) { - this.client.send(JSON.stringify({ ...data, type: 'receipt' })); + this.client.send(JSON.stringify({ ...data, type: 'receipt', set: 'manage' })); } }