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 }