summaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/tengo/outmessage.tengo8
1 files changed, 7 insertions, 1 deletions
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(`<a?(:.*?:)[0-9]+>`)
+ msgText=re.replace(msgText,"$1")
+}