Update install/index.html

This commit is contained in:
2026-02-21 19:58:15 +01:00
parent 804dc8ddc0
commit f5f54d106c

View File

@@ -1394,7 +1394,7 @@
(async function loadUpdates() { (async function loadUpdates() {
const container = document.getElementById('updatesList'); const container = document.getElementById('updatesList');
try { 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'); if (!res.ok) throw new Error('Failed to load');
const updates = await res.json(); const updates = await res.json();