From 860073fbf36938dade07e773c10fb8acc6a58ef5 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Mon, 21 Oct 2013 13:27:10 +0100 Subject: [PATCH] Fixed LIST for weechat --- client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/client.go b/client.go index 0e79fe9..c7aed4f 100644 --- a/client.go +++ b/client.go @@ -160,7 +160,6 @@ func (c *Client) reply(code replyCode, args ...string) { case rplMsg: c.outputChan <- fmt.Sprintf(":%s PRIVMSG %s %s", args[0], args[1], args[2]) case rplList: - c.outputChan <- fmt.Sprintf(":%s 321 %s", c.server.name, c.nick) for _, listItem := range args { c.outputChan <- fmt.Sprintf(":%s 322 %s %s", c.server.name, c.nick, listItem) }