From dd7ba3bf5d6024899d5106b3dcbdf23fe3168f48 Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sun, 23 Mar 2025 11:15:38 +0100 Subject: [PATCH] fix: reload page after firmware update completion --- html/upgrade.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/upgrade.html b/html/upgrade.html index 8e66721..48c2b33 100644 --- a/html/upgrade.html +++ b/html/upgrade.html @@ -129,6 +129,7 @@ if (data.status === 'success' || lastReceivedProgress >= 98) { clearTimeout(wsReconnectTimer); setTimeout(() => { + window.location.reload(true); window.location.href = '/'; }, 30000); } @@ -148,6 +149,7 @@ status.style.display = 'block'; clearTimeout(wsReconnectTimer); setTimeout(() => { + window.location.reload(true); window.location.href = '/'; }, 30000); } else {