fix quote generation

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

View file

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