From 589a7f36a8a1f546c129787b20c8ebf73945c506 Mon Sep 17 00:00:00 2001 From: Yogesh Ojha Date: Sat, 7 Sep 2024 20:37:20 +0530 Subject: [PATCH] fix url in whats new --- web/static/custom/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/static/custom/update.js b/web/static/custom/update.js index 24d823e0a..d807967cf 100644 --- a/web/static/custom/update.js +++ b/web/static/custom/update.js @@ -179,7 +179,7 @@ function showAfterUpdatePopup() { cancelButtonText: "No, thanks", }).then((result) => { if (result.isConfirmed) { - window.open(`https://rengine.wiki/whatisnew/${currentVersion.replace(/\./g, "_")}`, "_blank"); + window.open(`https://rengine.wiki/whats-new/${currentVersion.replace(/\./g, "_")}`, "_blank"); } localStorage.setItem("lastShownUpdateVersion", currentVersion); });