From 3264288752d9f3255607327d9424d8f8c369395a Mon Sep 17 00:00:00 2001 From: Joe Lothan Date: Wed, 20 May 2026 00:17:12 -0400 Subject: [PATCH] capped random favicons for frontend at 100 --- frontend/site.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site.js b/frontend/site.js index dce91ec..c27a8db 100644 --- a/frontend/site.js +++ b/frontend/site.js @@ -77,7 +77,7 @@ function createTab(entry) { img.alt = ""; img.loading = "lazy"; tab.appendChild(img); - loadedIcons.push(entry.icon); + if (loadedIcons.length < 100) loadedIcons.push(entry.icon); } const title = document.createElement("span");