fix: fetch

This commit is contained in:
Cory Dransfeldt 2024-04-08 16:48:39 -07:00
parent 982e479812
commit 3bb541bb67
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "9.9.0", "version": "9.9.1",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -43,7 +43,7 @@ export const onPreBuild = async ({ constants }) => {
const scrobbles = getStore('scrobbles') const scrobbles = getStore('scrobbles')
const artists = getStore('artists') const artists = getStore('artists')
const albums = getStore('albums') 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 windowData = await scrobbles.get('window', { type: 'json'})
const artistsMap = await artists.get('artists-map', { type: 'json' }) const artistsMap = await artists.get('artists-map', { type: 'json' })
const albumsMap = await albums.get('albums-map', { type: 'json' }) const albumsMap = await albums.get('albums-map', { type: 'json' })