refactor(websocket): 移除获取微信账号状态的冗余命令

移除在WebSocket连接成功后发送的获取微信账号状态的命令,该命令在当前场景下不再需要
This commit is contained in:
超级老白兔
2025-09-01 17:36:03 +08:00
parent a867f25481
commit cfa8182789

View File

@@ -296,11 +296,6 @@ export const useWebSocketStore = createPersistStore<WebSocketState>(
client: currentState.config?.client || "kefu-client",
seq: +new Date(),
});
//获取UserId
currentState.sendCommand("CmdRequestWechatAccountsAliveStatus", {
wechatAccountIds: ["300745", "4880930", "32686452"],
seq: +new Date(),
});
}
Toast.show({ content: "WebSocket连接成功", position: "top" });