mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-05-01 23:32:54 +08:00
ws recycle conn bug fix
This commit is contained in:
parent
09fe19d97b
commit
4a7026622e
@ -220,8 +220,12 @@ func (ws *WServer) delUserConn(conn *UserConn) {
|
|||||||
platform = k
|
platform = k
|
||||||
uid = v
|
uid = v
|
||||||
}
|
}
|
||||||
if oldConnMap, ok := ws.wsUserToConn[uid]; ok {
|
if oldConnMap, ok := ws.wsUserToConn[uid]; ok { // only recycle self conn
|
||||||
|
if oldconn, okMap := oldConnMap[platform]; okMap {
|
||||||
|
if oldconn == conn {
|
||||||
delete(oldConnMap, platform)
|
delete(oldConnMap, platform)
|
||||||
|
}
|
||||||
|
}
|
||||||
ws.wsUserToConn[uid] = oldConnMap
|
ws.wsUserToConn[uid] = oldConnMap
|
||||||
if len(oldConnMap) == 0 {
|
if len(oldConnMap) == 0 {
|
||||||
delete(ws.wsUserToConn, uid)
|
delete(ws.wsUserToConn, uid)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user