1
Fork 0

Make some errors non-fatal.

Don't disconnect the client for some more errors.
This commit is contained in:
Juliusz Chroboczek 2022-12-17 01:00:49 +01:00
parent 056f98604a
commit cc52e39ce4
1 changed files with 3 additions and 3 deletions

View File

@ -1393,7 +1393,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
case "join":
if m.Kind == "leave" {
if c.group == nil || c.group.Name() != m.Group {
return group.ProtocolError("you are not joined")
return group.UserError("you are not joined")
}
leaveGroup(c)
}
@ -1691,7 +1691,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
}
g.UpdateData(data)
default:
return group.ProtocolError("unknown group action")
return group.UserError("unknown group action")
}
case "useraction":
g := c.group
@ -1753,7 +1753,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
}
}(g.GetClients(nil))
default:
return group.ProtocolError("unknown user action")
return group.UserError("unknown user action")
}
case "pong":
// nothing