From 27fc1c55bf7043e33a28fc6b6d453c5060163fe3 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 21 Jun 2025 13:38:06 +0200 Subject: [PATCH] Edit the text to nothing --- commands/misc/dl.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/misc/dl.js b/commands/misc/dl.js index 4c69250..b5ffbe8 100644 --- a/commands/misc/dl.js +++ b/commands/misc/dl.js @@ -53,7 +53,9 @@ module.exports = { } const filename = files[0]; - await originalMessage.edit({files: [{ + await originalMessage.edit({ + content: null, + files: [{ attachment: path.resolve(downloadsDir, filename) }]})