🐛 Trying to fix unstable ws by limit client id length
This commit is contained in:
parent
8ac88413e0
commit
31f29cf940
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user