From e555d5a2a417a684415f180bf355f55946304e6a Mon Sep 17 00:00:00 2001 From: Stefan Riesenberger Date: Tue, 17 May 2022 21:59:34 +0200 Subject: [PATCH] use svg instead of png --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index cb86bd9..1eedd90 100644 --- a/index.html +++ b/index.html @@ -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);