From 4695537291e45d9532b40e9c72a6dbead9262905 Mon Sep 17 00:00:00 2001 From: pablorevilla-meshtastic Date: Sat, 23 May 2026 09:03:32 -0700 Subject: [PATCH] show all nodes in db --- meshview/templates/nodelist.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();