From 10d8045f0f90b2e1bf03683a485558be85ea7f37 Mon Sep 17 00:00:00 2001 From: olcxja Date: Fri, 8 May 2026 18:24:08 +0200 Subject: [PATCH] Android webview fix --- webroot/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webroot/index.html b/webroot/index.html index 3760e181..125026b0 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -110,13 +110,13 @@ } else { showNotification("Failed to auth. Redirecting to login...", "error", 3500); await delay(2000); - window.location.href = "login/"; + window.location.href = "login/index.html"; } } catch (e) { clearAction("startauth"); showNotification("Failed to auth. Redirecting to login...", "error", 3500); await delay(2000); - window.location.href = "login/"; + window.location.href = "login/index.html"; } }