Fix IRC colors regexp

This commit is contained in:
Wim 2016-09-22 23:48:05 +02:00
parent 1d240140c9
commit e8a2e1af63
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ func (b *Birc) handlePrivMsg(event *irc.Event) {
}
msg += event.Message()
// strip IRC colors
re := regexp.MustCompile(`[[:cntrl:]]\d+,\d`)
re := regexp.MustCompile(`[[:cntrl:]](\d+,|)\d+`)
msg = re.ReplaceAllString(msg, "")
flog.Debugf("Sending message from %s on %s to gateway", event.Arguments[0], b.FullOrigin())
b.Remote <- config.Message{Username: event.Nick, Text: msg, Channel: event.Arguments[0], Origin: b.origin, Protocol: b.protocol, FullOrigin: b.FullOrigin()}