From 8059a714659bb2ecf035d2f84cc5fafe1106725a Mon Sep 17 00:00:00 2001 From: you Date: Sun, 22 Mar 2026 01:01:21 +0000 Subject: [PATCH] Increase default packet limit from 100 to 10,000 Filtering is client-side now, so load everything upfront. --- public/index.html | 2 +- public/packets.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 22d4c55..456fb25 100644 --- a/public/index.html +++ b/public/index.html @@ -84,7 +84,7 @@ - + diff --git a/public/packets.js b/public/packets.js index 9e33c7d..0bf3c8a 100644 --- a/public/packets.js +++ b/public/packets.js @@ -345,7 +345,7 @@ async function loadPackets() { try { const params = new URLSearchParams(); - params.set('limit', '100'); + params.set('limit', '10000'); const regionParam = RegionFilter.getRegionParam(); if (regionParam) params.set('region', regionParam); if (filters.hash) params.set('hash', filters.hash);