capped random favicons for frontend at 100

This commit is contained in:
Joe Lothan 2026-05-20 00:17:12 -04:00
parent 56ae26cbef
commit 3264288752

View file

@ -77,7 +77,7 @@ function createTab(entry) {
img.alt = ""; img.alt = "";
img.loading = "lazy"; img.loading = "lazy";
tab.appendChild(img); tab.appendChild(img);
loadedIcons.push(entry.icon); if (loadedIcons.length < 100) loadedIcons.push(entry.icon);
} }
const title = document.createElement("span"); const title = document.createElement("span");