From b7ee0fe291f3444ac87978498a71b78ed47f878b Mon Sep 17 00:00:00 2001 From: "Jonny_Bro (Nikita)" Date: Mon, 9 Dec 2024 11:06:22 +0500 Subject: [PATCH] refactor(shorturl): reply with generated link from response --- commands/General/shorturl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/General/shorturl.js b/commands/General/shorturl.js index 06da073d..ee60eb44 100644 --- a/commands/General/shorturl.js +++ b/commands/General/shorturl.js @@ -63,7 +63,7 @@ class Shorturl extends BaseCommand { }).then(res => res.json()); interaction.editReply({ - content: ``, + content: `<${res.shortLink}>`, }); } }