From e8bf45a9a44ffe2f928bccbfe8189736072913fa Mon Sep 17 00:00:00 2001 From: Isaac Date: Sun, 25 Jun 2023 16:58:31 +0100 Subject: [PATCH] fix: use new changelog URL --- src/lib/updates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/updates.js b/src/lib/updates.js index 317a1ee..b8682d0 100644 --- a/src/lib/updates.js +++ b/src/lib/updates.js @@ -31,7 +31,7 @@ module.exports = client => { if (currentRelease === -1) return client.log.warn('Failed to find current release'); const behind = currentRelease; currentRelease = releases[currentRelease]; - const changelog = `https://discordtickets.app/changelogs/v${latestVersion.replaceAll('.', '-') }/`; + const changelog = `https://discordtickets.app/changelogs/v${latestVersion}/`; const guide = 'https://discordtickets.app/self-hosting/updating/'; const { default: boxen } = await import('boxen');