From 810c15078158e221585b9a3dda819544432628f5 Mon Sep 17 00:00:00 2001 From: c0ncord2 <59669788+c0ncord2@users.noreply.github.com> Date: Thu, 9 Jan 2020 17:02:53 +0000 Subject: move stripCustomoji logic to default Tengo script (#973) * 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> --- internal/tengo/outmessage.tengo | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'internal/tengo/outmessage.tengo') diff --git a/internal/tengo/outmessage.tengo b/internal/tengo/outmessage.tengo index d218088a..a68bb3dd 100644 --- a/internal/tengo/outmessage.tengo +++ b/internal/tengo/outmessage.tengo @@ -12,8 +12,14 @@ 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 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(``) + msgText=re.replace(msgText,"$1") +} -- cgit v1.2.3