mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-22 11:59:40 +01:00
fix #1876
INVITE did not exempt from +b unless the channel was coincidentally also +i. This was a regression introduced in v2.4.0.
This commit is contained in:
parent
521b3e9a1c
commit
da79533525
@ -1582,7 +1582,8 @@ func (channel *Channel) Invite(invitee *Client, inviter *Client, rb *ResponseBuf
|
|||||||
}
|
}
|
||||||
|
|
||||||
inviteOnly := channel.flags.HasMode(modes.InviteOnly)
|
inviteOnly := channel.flags.HasMode(modes.InviteOnly)
|
||||||
if inviteOnly && !channel.ClientIsAtLeast(inviter, modes.ChannelOperator) {
|
hasPrivs := channel.ClientIsAtLeast(inviter, modes.ChannelOperator)
|
||||||
|
if inviteOnly && !hasPrivs {
|
||||||
rb.Add(nil, inviter.server.name, ERR_CHANOPRIVSNEEDED, inviter.Nick(), chname, inviter.t("You're not a channel operator"))
|
rb.Add(nil, inviter.server.name, ERR_CHANOPRIVSNEEDED, inviter.Nick(), chname, inviter.t("You're not a channel operator"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -1592,7 +1593,10 @@ func (channel *Channel) Invite(invitee *Client, inviter *Client, rb *ResponseBuf
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if inviteOnly {
|
// #1876: INVITE should override all join restrictions, including +b and +l,
|
||||||
|
// not just +i. so we need to record it on a per-client basis iff the inviter
|
||||||
|
// is privileged:
|
||||||
|
if hasPrivs {
|
||||||
invitee.Invite(chcfname, createdAt)
|
invitee.Invite(chcfname, createdAt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user