mirror of https://github.com/fluffle/goirc
Fix bug in basetopic detection
This commit is contained in:
parent
f8acc8ffea
commit
f849da89c1
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue