From 36da8d37af0ff1ee700fff076a30b4e569d6aea2 Mon Sep 17 00:00:00 2001 From: baz Date: Sat, 22 Mar 2025 15:20:28 +0000 Subject: [PATCH] Fix changelog command --- commands/100-games/changelog.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/100-games/changelog.js b/commands/100-games/changelog.js index b93da78..251e5d7 100644 --- a/commands/100-games/changelog.js +++ b/commands/100-games/changelog.js @@ -19,7 +19,7 @@ module.exports = { const userDatabaseEntry = await getUserRegistration(user); if (!userDatabaseEntry) return interaction.editReply({ content: `Issue checking registration with "${user.username}".`, ephemeral: true }); - const changelogEntries = await getChangelog(userDatabaseEntry.id); + const changelogEntries = await getChangelog(userDatabaseEntry.id, '2024-01-01', `${new Date().getFullYear()}-12-31`); let desc = ''; for (let i = 0; i < changelogEntries.length; i++) { @@ -44,6 +44,8 @@ module.exports = { } } + console.log(changelogEntries); + const embed = new EmbedBuilder() .setColor(0x6441a5) .setThumbnail(user.avatarURL())