From f99fd7334c4798a2413db8190efa771f9ba66f16 Mon Sep 17 00:00:00 2001 From: Rias Date: Fri, 13 Oct 2023 09:41:35 +0200 Subject: [PATCH] Fix schedule --- resources/2023/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/2023/js/app.js b/resources/2023/js/app.js index 7c73ab3d..f270b4cc 100644 --- a/resources/2023/js/app.js +++ b/resources/2023/js/app.js @@ -148,7 +148,7 @@ anchors.add('#page h3'); $(document).ready(function () { const day = new Date(); - if (day.getMonth() > 8 && day.getDate() > 6) { + if (day.getMonth() > 8 && day.getDate() > 19) { showDayTwo(); } });