From 1c3bf63291e7b8cc81241e49ca848934533da5b3 Mon Sep 17 00:00:00 2001 From: baz Date: Sun, 23 Mar 2025 23:04:27 +0000 Subject: [PATCH] Add extra error checking to changelog --- commands/100-games/changelog.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/100-games/changelog.js b/commands/100-games/changelog.js index 251e5d7..43abf72 100644 --- a/commands/100-games/changelog.js +++ b/commands/100-games/changelog.js @@ -20,6 +20,9 @@ module.exports = { if (!userDatabaseEntry) return interaction.editReply({ content: `Issue checking registration with "${user.username}".`, ephemeral: true }); const changelogEntries = await getChangelog(userDatabaseEntry.id, '2024-01-01', `${new Date().getFullYear()}-12-31`); + + if (changelogEntries.length == 0) return interaction.editReply({ content: `${user.username} has no changelog entries.`, ephemeral: true }); + let desc = ''; for (let i = 0; i < changelogEntries.length; i++) {