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();