From 017d19a8c8d3fe76102751156f50e76f4b2aea4b Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 6 Mar 2020 19:17:54 -0800 Subject: [PATCH] Do not send internal link for update notification --- src/updatechecker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/updatechecker.js b/src/updatechecker.js index f3616e3fc..9b7d92e40 100644 --- a/src/updatechecker.js +++ b/src/updatechecker.js @@ -157,7 +157,7 @@ function checkBoxUpdates(callback) { const changelog = updateInfo.changelog.map((m) => `* ${m}\n`).join(''); - const message = `Changelog:\n${changelog}\n\nClick [here](/#/settings) to update.\n\n`; + const message = `Changelog:\n${changelog}\n\nGo to the settings view to update.\n\n`; notifications.alert(notifications.ALERT_BOX_UPDATE, `Cloudron v${updateInfo.version} is available`, message, function (error) { if (error) return callback(error);