bumped padding of bundles to 6 digits
This commit is contained in:
parent
59d4d2c9e0
commit
53205ab661
4 changed files with 5 additions and 5 deletions
|
|
@ -60,7 +60,7 @@ function pickBundle() {
|
|||
|
||||
// Fetch a bundle JSON
|
||||
async function fetchBundle(idx) {
|
||||
const padded = String(idx).padStart(4, "0");
|
||||
const padded = String(idx).padStart(6, "0");
|
||||
const resp = await fetch(`tabs/${padded}.json`);
|
||||
if (!resp.ok) throw new Error(`Failed to fetch bundle ${padded}`);
|
||||
const data = await resp.json();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue