🐛 Trying to fix unstable ws by limit client id length

This commit is contained in:
LittleSheep 2025-03-05 21:52:25 +08:00
parent 8ac88413e0
commit 31f29cf940

View File

@ -23,7 +23,7 @@ func ClientRegister(user sec.UserInfo, conn *websocket.Conn) (string, error) {
wsConn[user.ID] = make(map[string]*websocket.Conn)
}
var clientId string
if userDefinedId := conn.Query("clientId"); len(userDefinedId) > 0 {
if userDefinedId := conn.Query("clientId"); len(userDefinedId) > 0 && len(userDefinedId) <= 16 {
clientId = userDefinedId
} else {
clientId = uuid.NewString()