temp fix for join messages

This commit is contained in:
blackbeard420 2025-02-27 19:07:10 -05:00
parent 2eacef7e7c
commit 2e8d1a5084

3
irc.go
View File

@ -280,9 +280,8 @@ func (c *Connection) parseMessage(line string) {
} }
if c.JoinCallbackEx != nil { if c.JoinCallbackEx != nil {
c.JoinCallbackEx(c, from, target) c.JoinCallbackEx(c, from, msg)
} }
log.Printf("quit > %s > %s > %s", from, target, msg)
case "quit": case "quit":
c.removeNickAllChans(GetNick(from)) c.removeNickAllChans(GetNick(from))
if c.QuitCallback != nil { if c.QuitCallback != nil {