mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-08-29 10:58:26 +00:00
fix: restore vcrReplayFromTs fetch limit to 10000 — 2000 caused rubber banding on scrub
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user