From f1ffcfbff881c69182ff75df191f36938dd78803 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 28 Apr 2024 17:21:26 -0700 Subject: [PATCH] fix: defaults --- plugins/fetch-scrobbles/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 11189263..600f89c7 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -52,17 +52,17 @@ export const onPreBuild = async ({ constants }) => { const nowPlaying = await scrobbles.get('now-playing', { type: 'json'}) for (const key of monthKeys) { - const scrobbleData = await scrobbles.get(key, { type: 'json'}) + const scrobbleData = await scrobbles.get(key, { type: 'json'}) || [] monthChartData?.['data']?.push(...scrobbleData?.['data']) } for (const key of threeMonthKeys) { - const scrobbleData = await scrobbles.get(key, { type: 'json'}) + const scrobbleData = await scrobbles.get(key, { type: 'json'}) || [] threeMonthChartData?.['data']?.push(...scrobbleData?.['data']) } for (const key of yearKeys) { - let scrobbleData; + let scrobbleData try { scrobbleData = await scrobbles?.get(key, { type: 'json'}) } catch (error) {