Fix bug in basetopic detection

This commit is contained in:
raylu 2010-10-16 18:42:13 -04:00
parent f8acc8ffea
commit f849da89c1
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ func appendtopic(conn *irc.Conn, nick, args, channel string) {
section := conn.Network + " " + channel
basetopic, _ := conf.String(section, "basetopic")
if !strings.HasPrefix(c.Topic, basetopic) {
if basetopic == "" || !strings.HasPrefix(c.Topic, basetopic) {
basetopic = c.Topic
say(conn, nick, "New basetopic: %s", basetopic)
updateConf(section, "basetopic", basetopic)