From e03550423d67502b35623bc63b29ce7390d0b8db Mon Sep 17 00:00:00 2001 From: wood chen Date: Sat, 2 Nov 2024 13:03:02 +0800 Subject: [PATCH] fix: Update start date in stats update function --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index db7114e..ec2ac8f 100644 --- a/public/index.html +++ b/public/index.html @@ -91,7 +91,7 @@ async function updateStats(stats) { const endpointConfig = await loadEndpointConfig(); - const startDate = new Date('2024-10-26'); + const startDate = new Date('2024-11-1'); const today = new Date(); const daysSinceStart = Math.ceil((today - startDate) / (1000 * 60 * 60 * 24));