mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
fix #936
This commit is contained in:
parent
c291a5a340
commit
80424a6f00
@ -692,7 +692,7 @@ func (channel *Channel) Join(client *Client, key string, isSajoin bool, rb *Resp
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !hasPrivs && channel.flags.HasMode(modes.RegisteredOnly) && details.account == "" && !isInvited {
|
if !hasPrivs && channel.flags.HasMode(modes.RegisteredOnly) && details.account == "" && !isInvited {
|
||||||
rb.Add(nil, client.server.name, ERR_BANNEDFROMCHAN, details.nick, chname, client.t("You must be registered to join that channel"))
|
rb.Add(nil, client.server.name, ERR_NEEDREGGEDNICK, details.nick, chname, client.t("You must be registered to join that channel"))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ const (
|
|||||||
ERR_BANNEDFROMCHAN = "474"
|
ERR_BANNEDFROMCHAN = "474"
|
||||||
ERR_BADCHANNELKEY = "475"
|
ERR_BADCHANNELKEY = "475"
|
||||||
ERR_BADCHANMASK = "476"
|
ERR_BADCHANMASK = "476"
|
||||||
ERR_NOCHANMODES = "477"
|
ERR_NEEDREGGEDNICK = "477" // conflicted with ERR_NOCHANMODES; see #936
|
||||||
ERR_BANLISTFULL = "478"
|
ERR_BANLISTFULL = "478"
|
||||||
ERR_NOPRIVILEGES = "481"
|
ERR_NOPRIVILEGES = "481"
|
||||||
ERR_CHANOPRIVSNEEDED = "482"
|
ERR_CHANOPRIVSNEEDED = "482"
|
||||||
|
Loading…
Reference in New Issue
Block a user