From 758d4ef7f505949f9236a7eb459bc15b1ee34e0e Mon Sep 17 00:00:00 2001
From: nrb <freifunk@nicoboehr.de>
Date: Tue, 6 Oct 2020 08:51:47 +0200
Subject: [PATCH] fix redirect URL without Javascript

When JS was disabled, we redirected to /images/, which doesn't exist.
Instead redirect to the newest stable firmware.
---
 index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.html b/index.html
index 87ee7a4..09c5965 100644
--- a/index.html
+++ b/index.html
@@ -9,7 +9,7 @@
   </head>
   <body>
     <noscript>
-      <meta http-equiv="refresh" content="0; url=/images/">
+      <meta http-equiv="refresh" content="0; url=/gluon/stable/">
     </noscript>
 
     <div id="currentVersions">
-- 
GitLab