From a4ebd2b23c7ab0eff2d50450554981ceae3b9512 Mon Sep 17 00:00:00 2001 From: pablorevilla-meshtastic Date: Wed, 21 Jan 2026 20:11:17 -0800 Subject: [PATCH] work on net.html to limit packets to last 12 hours instead of 48 hours. --- meshview/templates/net.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshview/templates/net.html b/meshview/templates/net.html index 794b913..d3c21be 100644 --- a/meshview/templates/net.html +++ b/meshview/templates/net.html @@ -178,7 +178,7 @@ document.addEventListener("DOMContentLoaded", async () => { const sinceUs = Math.floor(sixDaysAgoMs * 1000); const url = - `/api/packets?portnum=1&contains=${encodeURIComponent(tag)}&since=${sinceUs}`; + `/api/packets?portnum=1&contains=${encodeURIComponent(tag)}&since=${sinceUs}&limit=1000`; const resp = await fetch(url); const data = await resp.json();