diff --git a/server/routes/index.ts b/server/routes/index.ts index d9e2342bd..72b98c8f7 100644 --- a/server/routes/index.ts +++ b/server/routes/index.ts @@ -59,7 +59,7 @@ router.get('/status', async (req, res) => { if (releases.length) { const latestVersion = releases[0]; - if (latestVersion.name !== currentVersion) { + if (!latestVersion.name.includes(currentVersion)) { updateAvailable = true; } }