mirror of
https://github.com/fluffle/goirc
synced 2025-05-12 18:44:50 +00:00
Fix same logic bug in KICK handler.
This commit is contained in:
parent
d74fd18d3d
commit
788c69aaa8
1 changed files with 6 additions and 1 deletions
|
@ -144,7 +144,12 @@ func (conn *Conn) h_KICK(line *Line) {
|
|||
ch := conn.GetChannel(line.Args[0])
|
||||
n := conn.GetNick(line.Args[1])
|
||||
if ch != nil && n != nil {
|
||||
ch.DelNick(n)
|
||||
if _, ok := ch.Nicks[n]; ok {
|
||||
ch.DelNick(n)
|
||||
} else {
|
||||
conn.error("irc.KICK(): nick %s is not on channel %s",
|
||||
line.Nick, line.Args[0])
|
||||
}
|
||||
} else {
|
||||
conn.error("irc.KICK(): buh? KICK from channel %s of nick %s",
|
||||
line.Args[0], line.Args[1])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue