diff --git a/package.json b/package.json index 8c2ce015..a49fcba0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "9.9.0", + "version": "9.9.1", "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 127bf614..2ade70e0 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -43,7 +43,7 @@ export const onPreBuild = async ({ constants }) => { const scrobbles = getStore('scrobbles') const artists = getStore('artists') const albums = getStore('albums') - const weeklyChartData = await scrobbles.get(`${lastWeek.year}-${lastWeek.weekNumber}`) + const weeklyChartData = await scrobbles.get(`${lastWeek.year}-${lastWeek.weekNumber}`, { type: 'json'}) const windowData = await scrobbles.get('window', { type: 'json'}) const artistsMap = await artists.get('artists-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' })