1
Fork 0

Simplify some usages of client.error.

This commit is contained in:
Juliusz Chroboczek 2020-05-28 04:27:15 +02:00
parent e05f2fee81
commit 72cbb5ffd3
1 changed files with 3 additions and 6 deletions

View File

@ -1376,8 +1376,7 @@ func handleClientMessage(c *client, m clientMessage) error {
}
case "op", "unop", "present", "unpresent":
if !c.permissions.Op {
c.error(userError("not authorised"))
return nil
return c.error(userError("not authorised"))
}
err := setPermission(c.group, m.Id, m.Type)
if err != nil {
@ -1385,8 +1384,7 @@ func handleClientMessage(c *client, m clientMessage) error {
}
case "lock", "unlock":
if !c.permissions.Op {
c.error(userError("not authorised"))
return nil
return c.error(userError("not authorised"))
}
var locked uint32
if m.Type == "lock" {
@ -1395,8 +1393,7 @@ func handleClientMessage(c *client, m clientMessage) error {
atomic.StoreUint32(&c.group.locked, locked)
case "kick":
if !c.permissions.Op {
c.error(userError("not authorised"))
return nil
return c.error(userError("not authorised"))
}
err := kickClient(c.group, m.Id)
if err != nil {