Support for ptb and canary links

This commit is contained in:
Jonny_Bro (Nikita) 2023-06-08 12:53:31 +05:00
parent 677bcce92a
commit 261be4eddc

View file

@ -48,7 +48,7 @@ class MessageCreate extends BaseEvent {
await updateXp(client, message, data);
if (message.content.includes("discord.com/channels/")) {
const link = message.content.match(/(https|http):\/\/(discord.com)\/(channels)\/\d+\/\d+\/\d+/g)[0],
const link = message.content.match(/(https|http):\/\/(ptb\.|canary\.)?(discord.com)\/(channels)\/\d+\/\d+\/\d+/g)[0],
ids = link.match(/\d+/g),
channelId = ids[1],
messageId = ids[2];