From 3bb541bb67c3b2dcbf6d259eaa5f82f53bd66d1e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 8 Apr 2024 16:48:39 -0700 Subject: [PATCH] fix: fetch --- package.json | 2 +- plugins/fetch-scrobbles/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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' })