mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 15:40:27 +00:00
Create outmessage-discordemoji.tengo (#979)
This commit is contained in:
parent
4c44515f9d
commit
0dd19af6e8
10
contrib/outmessage-discordemoji.tengo
Normal file
10
contrib/outmessage-discordemoji.tengo
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
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")
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user