From 79a775ea631935c346308358d0d5398b350aa354 Mon Sep 17 00:00:00 2001 From: icey-yu <119291641+icey-yu@users.noreply.github.com> Date: Mon, 24 Feb 2025 15:29:39 +0800 Subject: [PATCH] fix: PCAndOther multi login policy can`t get old clients correctly (#3158) --- internal/msggateway/ws_server.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/internal/msggateway/ws_server.go b/internal/msggateway/ws_server.go index 0731074c0..d2e803a21 100644 --- a/internal/msggateway/ws_server.go +++ b/internal/msggateway/ws_server.go @@ -353,6 +353,15 @@ func (ws *WsServer) multiTerminalLoginChecker(clientOK bool, oldClients []*Clien if constant.PlatformIDToClass(newClient.PlatformID) == constant.TerminalPC { return } + clients, ok := ws.clients.GetAll(newClient.UserID) + clientOK = ok + oldClients = make([]*Client, 0, len(clients)) + for _, c := range clients { + if constant.PlatformIDToClass(c.PlatformID) == constant.TerminalPC { + continue + } + oldClients = append(oldClients, c) + } fallthrough case constant.AllLoginButSameTermKick: if !clientOK {