mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Simplify some usages of client.error.
This commit is contained in:
parent
e05f2fee81
commit
72cbb5ffd3
1 changed files with 3 additions and 6 deletions
|
@ -1376,8 +1376,7 @@ func handleClientMessage(c *client, m clientMessage) error {
|
||||||
}
|
}
|
||||||
case "op", "unop", "present", "unpresent":
|
case "op", "unop", "present", "unpresent":
|
||||||
if !c.permissions.Op {
|
if !c.permissions.Op {
|
||||||
c.error(userError("not authorised"))
|
return c.error(userError("not authorised"))
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
err := setPermission(c.group, m.Id, m.Type)
|
err := setPermission(c.group, m.Id, m.Type)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -1385,8 +1384,7 @@ func handleClientMessage(c *client, m clientMessage) error {
|
||||||
}
|
}
|
||||||
case "lock", "unlock":
|
case "lock", "unlock":
|
||||||
if !c.permissions.Op {
|
if !c.permissions.Op {
|
||||||
c.error(userError("not authorised"))
|
return c.error(userError("not authorised"))
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
var locked uint32
|
var locked uint32
|
||||||
if m.Type == "lock" {
|
if m.Type == "lock" {
|
||||||
|
@ -1395,8 +1393,7 @@ func handleClientMessage(c *client, m clientMessage) error {
|
||||||
atomic.StoreUint32(&c.group.locked, locked)
|
atomic.StoreUint32(&c.group.locked, locked)
|
||||||
case "kick":
|
case "kick":
|
||||||
if !c.permissions.Op {
|
if !c.permissions.Op {
|
||||||
c.error(userError("not authorised"))
|
return c.error(userError("not authorised"))
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
err := kickClient(c.group, m.Id)
|
err := kickClient(c.group, m.Id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue