From 8926cd11ded6b289bbfb92ce4abd279e4da8611c Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Fri, 14 May 2021 12:03:33 -0500 Subject: [PATCH] Attempt to update changelog formatting --- bot/awesomescibo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index 40bcbd8..7422539 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -447,7 +447,7 @@ async function changelog(message) { .setTimestamp(); commits.forEach(commit => { - changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n> [Link](https://github.com/ADawesomeguy/AwesomeSciBo/commit/${commit.hash})\n`); + changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n> \`Link\`: [\`GitHub\`](https://github.com/ADawesomeguy/AwesomeSciBo/commit/${commit.hash})\n`); }); message.channel.send(changelogEmbed);