use svg instead of png

This commit is contained in:
Stefan Riesenberger 2022-05-17 21:59:34 +02:00
parent b1ae23b2bf
commit e555d5a2a4
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@
console.log("Re-fetching frogs");
frogs = await fetch("https://api.github.com/repos/Riesi/frog_emojis/git/trees/master?recursive=1")
.then(res=>res.json())
.then(a => a.tree.filter(b => b.path.startsWith("png/1024")));
.then(a => a.tree.filter(b => b.path.startsWith("svg/")));
//.then(a => a.filter(b => b.type === "blob"));
frogCache_commit(frogs);