mirror of
https://github.com/42wim/matterbridge
synced 2024-11-07 09:20:23 +00:00
810c150781
* move stripCustomoji logic to default Tengo script Removing the image ID from the message (without any possibility of recovering it later) is a loss of valuable data that prevents users from giving support to custom emoji via Tengo scripts. * bugfix - do send colors to other irc bridges "if we're not sending to an irc bridge we strip the IRC colors" Co-authored-by: c0ncord <59654954+c0ncord@users.noreply.github.com>
26 lines
604 B
Plaintext
26 lines
604 B
Plaintext
/*
|
|
variables available
|
|
read-only:
|
|
inAccount, inProtocol, inChannel, inGateway
|
|
outAccount, outProtocol, outChannel, outGateway
|
|
|
|
read-write:
|
|
msgText, msgUsername
|
|
*/
|
|
|
|
text := import("text")
|
|
|
|
// start - strip irc colors
|
|
// if we're not sending to an irc bridge we strip the IRC colors
|
|
if inProtocol == "irc" && outProtocol != "irc" {
|
|
re := text.re_compile(`\x03(?:\d{1,2}(?:,\d{1,2})?)?|[[:cntrl:]]`)
|
|
msgText=re.replace(msgText,"")
|
|
}
|
|
// end - strip irc colors
|
|
|
|
// strip custom emoji
|
|
if inProtocol == "discord" {
|
|
re := text.re_compile(`<a?(:.*?:)[0-9]+>`)
|
|
msgText=re.replace(msgText,"$1")
|
|
}
|