Strip irc colors correct, strip also ctrl chars (irc). Closes #286

pull/282/head
Wim 7 years ago
parent 76aafe1fa8
commit 299b71d982

@ -288,7 +288,9 @@ func (b *Birc) handlePrivMsg(event *irc.Event) {
}
msg += event.Message()
// strip IRC colors
re := regexp.MustCompile(`[[:cntrl:]](\d+,|)\d+`)
re := regexp.MustCompile(`\x03(\d+,|)\d+`)
msg = re.ReplaceAllString(msg, "")
re = regexp.MustCompile(`[[:cntrl:]]`)
msg = re.ReplaceAllString(msg, "")
var r io.Reader

Loading…
Cancel
Save