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.
This commit is contained in:
@@ -17,3 +17,9 @@ if inProtocol == "irc" && outProtocol != "irc" {
|
|||||||
msgText=re.replace(msgText,"")
|
msgText=re.replace(msgText,"")
|
||||||
}
|
}
|
||||||
// end - strip irc colors
|
// end - strip irc colors
|
||||||
|
|
||||||
|
// strip custom emoji
|
||||||
|
if inProtocol == "discord" {
|
||||||
|
re := text.re_compile(`<a?(:.*?:)[0-9]+>`)
|
||||||
|
msgText=re.replace(msgText,"$1")
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user