Add hashtag to channel (discord)

pull/196/head
Wim 7 years ago
parent 171a53592d
commit c0c4890887

@ -226,9 +226,9 @@ func (b *bdiscord) replaceChannelMentions(text string) string {
return "#unknownchannel" return "#unknownchannel"
} }
channel = b.getChannelName(m[2 : len(m)-1]) channel = b.getChannelName(m[2 : len(m)-1])
return channel return "#" + channel
} }
return channel return "#" + channel
}) })
return text return text
} }

Loading…
Cancel
Save