change FAIL codes from NOT_PRIVED to PRIVS_NEEDED

This commit is contained in:
Shivaram Lingamneni 2020-12-06 21:01:44 -05:00
parent 937e519595
commit 66d90bef5e
2 changed files with 2 additions and 2 deletions

View file

@ -1571,7 +1571,7 @@ func (channel *Channel) Uninvite(invitee *Client, inviter *Client, rb *ResponseB
}
if !channel.ClientIsAtLeast(inviter, modes.ChannelOperator) {
rb.Add(nil, channel.server.name, "FAIL", "UNINVITE", "NOT_PRIVED", channel.Name(), inviter.t("You're not a channel operator"))
rb.Add(nil, channel.server.name, "FAIL", "UNINVITE", "PRIVS_NEEDED", channel.Name(), inviter.t("You're not a channel operator"))
return
}