Compare commits

..

1 Commits

Author SHA1 Message Date
24ee99e33a 🐛修复下线客户端的bug 2024-06-06 17:26:17 +08:00

View File

@@ -68,7 +68,7 @@ const initServerInfo = () => {
// 强制下线客户端 // 强制下线客户端
const offlineClientHandler = (clientID: string) => { const offlineClientHandler = (clientID: string) => {
offlineClient().then(res => { offlineClient(clientID).then(res => {
if (res.code === 200) { if (res.code === 200) {
message("下线客户端成功", { type: "success" }); message("下线客户端成功", { type: "success" });
} }