3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

disable no-topic reply

This commit is contained in:
Jeremy Latt 2014-02-16 09:39:11 -08:00
parent 0f6ee63e6e
commit a17490e801

View File

@ -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
}