From 0cc87762fcb7177929a622d98163036a095d117b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Sat, 24 Feb 2024 09:04:04 +0100 Subject: [PATCH] Fix articles --- assets/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/script.js b/assets/script.js index b6f0baf..77e08d7 100644 --- a/assets/script.js +++ b/assets/script.js @@ -256,7 +256,7 @@ async function onPageLoad() { if (currentSite === "home" && currentPage === "account" && isLoggedIn()) { await showDashboardGreeting(); } - if (currentSite === "news" && currentPage === "index" && isLoggedIn()) { + if (currentSite === "news" && currentPage === "index") { await articleInit(); } }