From e6a02f34ab9c619e9f8afcb46a4eb8e57d463803 Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Wed, 10 Aug 2022 09:31:50 +0200 Subject: [PATCH] USB power warning when upgrading --- web/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/application.js b/web/application.js index e81e2513..6c6f019c 100644 --- a/web/application.js +++ b/web/application.js @@ -878,7 +878,7 @@ var fetch = function() { var upgrade = function() { if(nextVersion) { - if(confirm("Are you sure you want to perform upgrade to " + nextVersion.tag_name + "?")) { + if(confirm("WARNING: Please keep USB power connected while upgrading. Are you sure you want to perform upgrade to " + nextVersion.tag_name + "?")) { $('#loading-indicator').show(); window.location.href="/upgrade?version=" + nextVersion.tag_name; }