Merge b48fadcc8c3f8309f6fdf94e858ad19305930761 into b1837434dfca696e0f14664e6f8e1aad472f37c1

This commit is contained in:
OpenIM-Robot 2025-07-29 11:17:33 +08:00 committed by GitHub
commit e14f6fef44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -340,6 +340,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 {