From a16c27ecce694b0019e326b0c23fb30e93747af3 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 14 Aug 2026 19:40:47 +0200 Subject: [PATCH] fix: Use replacement navigation for web transitions (#1378) --- web/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/script.js b/web/js/script.js index 2be0f83..23d5be3 100644 --- a/web/js/script.js +++ b/web/js/script.js @@ -537,7 +537,7 @@ function reload() { navigationTimer = setTimeout(function() { navigationTimer = null; - window.location.reload(); + window.location.replace(window.location.href); }, 3000); return true;