From 43f1641f75d71e1417d7c2e14fcb3e4fd6ddc568 Mon Sep 17 00:00:00 2001 From: you Date: Thu, 19 Mar 2026 21:30:01 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20restore=20vcrReplayFromTs=20fetch=20limi?= =?UTF-8?q?t=20to=2010000=20=E2=80=94=202000=20caused=20rubber=20banding?= =?UTF-8?q?=20on=20scrub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/live.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/live.js b/public/live.js index 67cea5ae..8d61bb6f 100644 --- a/public/live.js +++ b/public/live.js @@ -121,7 +121,7 @@ loadNodes(targetTs); // Fetch ALL packets from scrub point to now (no limit, no until) - fetch(`/api/packets?limit=2000&grouped=false&since=${encodeURIComponent(fetchFrom)}`) + fetch(`/api/packets?limit=10000&grouped=false&since=${encodeURIComponent(fetchFrom)}`) .then(r => r.json()) .then(data => { const pkts = (data.packets || []).reverse(); // chronological order