From f5f54d106cf89c80c09e805182f936730082c176 Mon Sep 17 00:00:00 2001 From: Ben de Roo Date: Sat, 21 Feb 2026 19:58:15 +0100 Subject: [PATCH] Update install/index.html --- install/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.html b/install/index.html index ef900cd..0415a9e 100644 --- a/install/index.html +++ b/install/index.html @@ -1394,7 +1394,7 @@ (async function loadUpdates() { const container = document.getElementById('updatesList'); try { - const res = await fetch('/updates.json?v=' + Date.now()); + const res = await fetch('./updates.json?v=' + Date.now()); if (!res.ok) throw new Error('Failed to load'); const updates = await res.json();