mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-11 06:29:29 +01:00
fix #1295
This commit is contained in:
parent
a36461415f
commit
127a03ccf3
@ -546,7 +546,7 @@ oper-classes:
|
||||
- "local_unban"
|
||||
- "nofakelag"
|
||||
- "roleplay"
|
||||
- "relaymsg-anywhere"
|
||||
- "relaymsg"
|
||||
|
||||
# network operator
|
||||
"network-oper":
|
||||
|
@ -574,7 +574,7 @@ oper-classes:
|
||||
- "local_unban"
|
||||
- "nofakelag"
|
||||
- "roleplay"
|
||||
- "relaymsg-anywhere"
|
||||
- "relaymsg"
|
||||
|
||||
# network operator
|
||||
"network-oper":
|
||||
|
@ -2430,7 +2430,7 @@ func relaymsgHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *
|
||||
return false
|
||||
}
|
||||
|
||||
allowedToRelay := client.HasRoleCapabs("relaymsg-anywhere") || (config.Server.Relaymsg.AvailableToChanops && channel.ClientIsAtLeast(client, modes.ChannelOperator))
|
||||
allowedToRelay := client.HasRoleCapabs("relaymsg") || (config.Server.Relaymsg.AvailableToChanops && channel.ClientIsAtLeast(client, modes.ChannelOperator))
|
||||
if !allowedToRelay {
|
||||
rb.Add(nil, server.name, "FAIL", "RELAYMSG", "NOT_PRIVED", client.t("You cannot relay messages to this channel"))
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user