diff --git a/js/script.js b/js/script.js
index ce35663..1e93a30 100644
--- a/js/script.js
+++ b/js/script.js
@@ -33,7 +33,7 @@ fetch(host.replace("%", "top10")).then(r => r.text()).then(r => {
         num: parseInt(segments[0]),
         hash: segments[1]
       }
-      hashes[info.hash] = hashes[info.hash] ?? { "seeds": 0 };
+      hashes[info.hash] = hashes[info.hash] ?? { seeds: 0, peers: 0, leeches: 0 };
       hashes[info.hash][current] = hashes[info.hash][current] ?? 0;
 
       hashes[info.hash][current] += info.num;