Merge pull request #114 from MattMcNam/nick

Don’t send NICK and USER commands while negotiating caps
This commit is contained in:
Thomas Jager
2019-02-21 23:52:39 +01:00
committed by GitHub

7
irc.go
View File

@@ -568,13 +568,6 @@ func (irc *Connection) negotiateCaps() error {
} }
irc.pwrite <- fmt.Sprintf("CAP END\r\n") irc.pwrite <- fmt.Sprintf("CAP END\r\n")
realname := irc.user
if irc.RealName != "" {
realname = irc.RealName
}
irc.pwrite <- fmt.Sprintf("NICK %s\r\n", irc.nick)
irc.pwrite <- fmt.Sprintf("USER %s 0.0.0.0 0.0.0.0 :%s\r\n", irc.user, realname)
return nil return nil
} }