From a17490e801f0a3576bbe0edf838c3bdb12ea203a Mon Sep 17 00:00:00 2001 From: Jeremy Latt Date: Sun, 16 Feb 2014 09:39:11 -0800 Subject: [PATCH] disable no-topic reply --- irc/channel.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/irc/channel.go b/irc/channel.go index bf183ba2..b79b1907 100644 --- a/irc/channel.go +++ b/irc/channel.go @@ -129,7 +129,8 @@ func (channel *Channel) IsEmpty() bool { func (channel *Channel) GetTopic(replier Replier) { if channel.topic == "" { - replier.Reply(RplNoTopic(channel)) + // clients appear not to expect this + //replier.Reply(RplNoTopic(channel)) return }