From acfeb6135f028c139724520cd93e96f952d8e2e3 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 28 Apr 2024 17:14:51 -0700 Subject: [PATCH] fix: conditional access --- plugins/fetch-scrobbles/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 83468372..5d5ecc1f 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -53,12 +53,12 @@ export const onPreBuild = async ({ constants }) => { for (const key of monthKeys) { const scrobbleData = await scrobbles.get(key, { type: 'json'}) - monthChartData['data'].push(...scrobbleData['data']) + monthChartData?.['data'].push(...scrobbleData?.['data']) } for (const key of threeMonthKeys) { const scrobbleData = await scrobbles.get(key, { type: 'json'}) - threeMonthChartData['data'].push(...scrobbleData['data']) + threeMonthChartData?.['data'].push(...scrobbleData?.['data']) } for (const key of yearKeys) {