mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
11 lines
428 B
Plaintext
11 lines
428 B
Plaintext
|
text := import("text")
|
||
|
|
||
|
// if we're not sending to a discord bridge,
|
||
|
// then convert custom emoji tags into url's
|
||
|
if (inProtocol == "discord" && outProtocol != "discord") {
|
||
|
rePNG := text.re_compile(`<:.*?:([0-9]+)>`)
|
||
|
msgText=rePNG.replace(msgText,"https://cdn.discordapp.com/emojis/$1.png")
|
||
|
reGIF := text.re_compile(`<a:.*?:([0-9]+)>`)
|
||
|
msgText=reGIF.replace(msgText,"https://cdn.discordapp.com/emojis/$1.gif")
|
||
|
}
|