fix: websocket心跳增加平台标识

This commit is contained in:
YeMingfei666 2025-03-25 21:38:19 +08:00
parent 6006278630
commit edfa018921
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class WebSocketManager {
// 消息回执 // 消息回执
public onMessageHandler(data: any) { public onMessageHandler(data: any) {
if (this.client && this.connected) { if (this.client && this.connected) {
this.client.send(JSON.stringify({ ...data, type: 'receipt' })); this.client.send(JSON.stringify({ ...data, type: 'receipt', set: 'manage' }));
} }
} }