From 8f7afa9be79d0252f73a5867eae186cf7af72f03 Mon Sep 17 00:00:00 2001 From: supositware Date: Sun, 3 Jul 2022 01:00:17 +0200 Subject: [PATCH] Fix command --- commands/fun/reddit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/fun/reddit.js b/commands/fun/reddit.js index e4681e50..44c6645f 100644 --- a/commands/fun/reddit.js +++ b/commands/fun/reddit.js @@ -34,7 +34,7 @@ export default { .setURL('https://reddit.com' + response.data.children[i].data.permalink) .setFooter({ text: `/r/${response.data.children[i].data.subreddit} | ⬆ ${response.data.children[i].data.ups} 🗨 ${response.data.children[i].data.num_comments}` }); - interaction.editReply({ embeds: [redditEmbed] }); + interaction.followUp({ embeds: [redditEmbed] }); interaction.followUp(response.data.children[i].data.url); }); },