diff --git a/meshview/templates/nodelist.html b/meshview/templates/nodelist.html index d0c92ed..cd9d632 100644 --- a/meshview/templates/nodelist.html +++ b/meshview/templates/nodelist.html @@ -416,7 +416,7 @@ document.addEventListener("DOMContentLoaded", async function() { try { setStatus("Loading nodes…"); await nextFrame(); - const res = await fetch("/api/nodes?days_active=3"); + const res = await fetch("/api/nodes"); if (!res.ok) throw new Error("Failed to fetch nodes"); const data = await res.json();