From e60e548aa91aaf2fe33866fca363efcfecb3ef2a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 18:47:45 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 5d6e4862..1c9b26f5 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -2,13 +2,18 @@ import { getDeployStore } from '@netlify/blobs' import fs from 'fs' export const onPreBuild = async ({ constants }) => { - const store = getDeployStore({ + const scrobbles = store.get('scrobbles', { siteID: constants.SITE_ID, token: constants.NETLIFY_API_TOKEN, - }); - const scrobbles = store.get('scrobbles') - const artists = store.get('artists') - const albums = store.get('albums') + }) + const artists = store.get('artists', { + siteID: constants.SITE_ID, + token: constants.NETLIFY_API_TOKEN, + }) + const albums = store.get('albums', { + siteID: constants.SITE_ID, + token: constants.NETLIFY_API_TOKEN, + }) 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' })