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:
parent
24ad2172a8
commit
2dba5f4c47
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user