Per default don't strip IRC colors to IRC channels

This commit is contained in:
chotaire
2019-04-19 02:09:59 +02:00
parent 6af2ee9330
commit 173a1fe337

View File

@@ -13,7 +13,9 @@ text := import("text")
// start - strip irc colors
// if we're not sending to an irc bridge we strip the IRC colors
if inProtocol == "irc" {
if OutProtocol != "irc" {
re := text.re_compile(`\x03(?:\d{1,2}(?:,\d{1,2})?)?|[[:cntrl:]]`)
msgText=re.replace(msgText,"")
}
}
// end - strip irc colors