From e75938bebcf88b678f24ed35b78be9eaf982d213 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 2 Feb 2024 16:51:21 +0100 Subject: [PATCH] Make non-HTTPS message more harsh As browsers are placing more and more new functionality as secure-context only, we need to prepare users for more problems. I find it likely that we will disable non-HTTPS connections in the future. --- app/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui.js b/app/ui.js index 00628c72..f27dfe28 100644 --- a/app/ui.js +++ b/app/ui.js @@ -66,7 +66,7 @@ const UI = { // insecure context if (!window.isSecureContext) { // FIXME: This gets hidden when connecting - UI.showStatus(_("HTTPS is required for full functionality"), 'error'); + UI.showStatus(_("Running without HTTPS is not recommended, crashes or other issues are likely."), 'error'); } // Try to fetch version number