why is this thing so stupid

This commit is contained in:
onezplpl 2024-08-02 20:33:26 -04:00
parent 4d6917f39f
commit b664acd1e2
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3

View file

@ -4,8 +4,8 @@ let users = {};
let fetchData;
async function genTree(treeId) {
fetchData = fetchData || await fetch(`https://scratch.mit.edu/projects/${treeId}/remixtree/bare/`)
async function genTree(treeId, tree2) {
fetchData = fetchData || await fetch(`https://scratch.mit.edu/projects/${tree2}/remixtree/bare/`)
.then(x => x.json());
entries.push(treeId)
@ -28,8 +28,8 @@ let doThings = false;
async function main() {
let latestData = await fetch("https://corsproxy.io/?https://api.scratch.mit.edu/studios/34493018/projects").then(x => x.json());
await genTree(latestData[0].id); // latest project
await genTree("654605857"); // tree bug here, unavoidable without jank
await genTree(latestData[0].id, "1052168454"); // latest project
await genTree("654605857", "1052168454"); // tree bug here, unavoidable without jank
doThings = true;
document.querySelector('.contributors').innerHTML = Object.keys(users)
.sort((x, y) => users[y] - users[x])