From d03aabff04696b422639564fb66a0f4ae43e58e6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 4 Apr 2024 17:05:02 -0700 Subject: [PATCH] chore: debug --- plugins/fetch-scrobbles/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 18b691f3..b1510484 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -34,7 +34,7 @@ export const onPreBuild = async ({ constants }) => { const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) for (const key of keys) { const scrobbleData = await scrobbles.get(key, { type: 'json'}) - data.push(scrobbleData['data']) + chartData.push(scrobbleData['data']) } console.log(chartData) fs.writeFileSync('./src/_data/json/scrobbles-window.json', JSON.stringify(windowData))