actually fetch all pages
parent
1daa223be7
commit
4b9311c61f
4
index.ts
4
index.ts
|
@ -15,9 +15,7 @@ async function getPatchHrefs() {
|
||||||
let patchHrefs: string[] = [];
|
let patchHrefs: string[] = [];
|
||||||
|
|
||||||
for (let i = 0; i <= 7; i++) {
|
for (let i = 0; i <= 7; i++) {
|
||||||
const req = await fetch(
|
const req = await fetch(getGalleryPageHref(i));
|
||||||
"https://www.nasa.gov/gallery/human-spaceflight-mission-patches/page/2/",
|
|
||||||
);
|
|
||||||
const data = parse(await req.text());
|
const data = parse(await req.text());
|
||||||
|
|
||||||
const gallery = data
|
const gallery = data
|
||||||
|
|
Loading…
Reference in New Issue