From cba4773c11d37496f6cb8627e64bf8932919dbbb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 18 Apr 2024 14:27:43 -0700 Subject: [PATCH] fix: include current week in keys --- plugins/fetch-scrobbles/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 0e21ff4b..92d936fa 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -15,6 +15,8 @@ const getKeys = (months = 1) => { count++; } + keys.push(`${currentDate.year}-${currentDate.weekNumber}`) + return keys } @@ -80,4 +82,4 @@ export const onPreBuild = async ({ constants }) => { fs.writeFileSync('./src/_data/json/scrobbles-month-chart.json', JSON.stringify({ data: filterOldScrobbles(monthChartData.data) })) fs.writeFileSync('./src/_data/json/scrobbles-three-month-chart.json', JSON.stringify({ data: filterOldScrobbles(threeMonthChartData.data, 3) })) fs.writeFileSync('./src/_data/json/scrobbles-year-chart.json', JSON.stringify({ data: filterOldScrobbles(yearChartData.data, 12) })) -} \ No newline at end of file +}