diff --git a/package.json b/package.json index a49fcba0..e71afb3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "9.9.1", + "version": "9.9.2", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 2ade70e0..348ed806 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -59,7 +59,7 @@ export const onPreBuild = async ({ constants }) => { threeMonthChartData['data'].push(...scrobbleData['data']) } - if (currentDate.weekday === 1) fs.writeFileSync('./src/_data/json/weekly-top-artists-chart.json', JSON.stringify({...weeklyChartData, timestamp: `${lastWeek.toMillis()}` })) + fs.writeFileSync('./src/_data/json/weekly-top-artists-chart.json', JSON.stringify({...weeklyChartData, timestamp: `${lastWeek.set({ hour: 8, minute: 0, second: 0, millisecond: 0 }).toMillis()}` })) fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData)) fs.writeFileSync('./src/_data/json/artists-map.json', JSON.stringify(artistsMap)) fs.writeFileSync('./src/_data/json/albums-map.json', JSON.stringify(albumsMap))