mirror of
https://github.com/jech/galene.git
synced 2024-11-09 02:05:59 +01:00
Make some errors non-fatal.
Don't disconnect the client for some more errors.
This commit is contained in:
parent
056f98604a
commit
cc52e39ce4
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue