From cc48fc8e58b6e4a3257d9e07b0520ae5ba11264a Mon Sep 17 00:00:00 2001 From: MrRGnome <5963774+MrRGnome@users.noreply.github.com> Date: Wed, 11 Mar 2026 19:00:36 -0600 Subject: [PATCH] Format article draft links in confirmation reply --- commands/article.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/article.js b/commands/article.js index 5f86b53..43f630f 100644 --- a/commands/article.js +++ b/commands/article.js @@ -325,7 +325,8 @@ async function articleCommand(message, args) { console.error(`Draft forum URL update failed for ${article.id}${detail}`); } - await message.reply(`Draft created: | <${thread.url}>`); + const articleUrl = `https://btcmaxis.com/article.html?id=${article.id}`; + await message.reply(`[Article Link](<${articleUrl}>) | [Article Comments](<${thread.url}>)`); } module.exports = {