bugfix - do send colors to other irc bridges
"if we're not sending to an irc bridge we strip the IRC colors"
This commit is contained in:
@@ -12,7 +12,7 @@ text := import("text")
|
|||||||
|
|
||||||
// start - strip irc colors
|
// start - strip irc colors
|
||||||
// if we're not sending to an irc bridge we strip the IRC colors
|
// if we're not sending to an irc bridge we strip the IRC colors
|
||||||
if inProtocol == "irc" {
|
if inProtocol == "irc" && outProtocol != "irc" {
|
||||||
re := text.re_compile(`\x03(?:\d{1,2}(?:,\d{1,2})?)?|[[:cntrl:]]`)
|
re := text.re_compile(`\x03(?:\d{1,2}(?:,\d{1,2})?)?|[[:cntrl:]]`)
|
||||||
msgText=re.replace(msgText,"")
|
msgText=re.replace(msgText,"")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user