From d43e7c84185a67a71f7089d5bc8da235fd896702 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 13 May 2024 14:36:31 -0700 Subject: [PATCH] chore: adjust date window --- src/_data/weeklyArtistChart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/weeklyArtistChart.js b/src/_data/weeklyArtistChart.js index 143c4c0e..ac734307 100644 --- a/src/_data/weeklyArtistChart.js +++ b/src/_data/weeklyArtistChart.js @@ -41,7 +41,7 @@ export default async function() { if (now.weekday !== 1) return // only run on monday const startOfWeek = now.minus({ days: now.weekday + 1 }).startOf('day') - const endOfWeek = now.minus({ days: now.weekday - 5 }).endOf('day') + const endOfWeek = now.minus({ days: now.weekday - 7 }).endOf('day') const startOfWeekSeconds = startOfWeek.toSeconds() const endOfWeekSeconds = endOfWeek.toSeconds() const weekNumber = now.toFormat('kkkk-WW')