diff --git a/site.js b/site.js index d7ef2e5..e995f4a 100644 --- a/site.js +++ b/site.js @@ -124,9 +124,10 @@ async function rounder(users, data, mode) { let endn = []; for (let h in data) { let dh = data[h]; + if (dh.following.length == 0 && dh.followers.length == 0) continue; endn = endn.concat(dh.following, dh.followers); - endn = [...new Set(endn)]; } + endn = [...new Set(endn)]; return endn; }