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))