3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

Fix channel parting.

This commit is contained in:
Jeremy Latt 2012-12-09 10:15:01 -08:00
parent 24ad2172a8
commit 2dba5f4c47

View File

@ -55,10 +55,14 @@ func (ch *Channel) Part(cl *Client, message string) {
return return
} }
delete(ch.members, cl) if message == "" {
delete(cl.channels, ch) message = cl.Nick()
}
ch.Send(RplPart(ch, cl, message), nil) ch.Send(RplPart(ch, cl, message), nil)
delete(ch.members, cl)
delete(cl.channels, ch)
} }
func (ch *Channel) PrivMsg(cl *Client, message string) { func (ch *Channel) PrivMsg(cl *Client, message string) {