From 538f529961154d63f3b41149a26a434ecc6a5d8c Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 28 Apr 2024 17:25:07 -0700 Subject: [PATCH] fix: checks --- plugins/fetch-scrobbles/index.js | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/plugins/fetch-scrobbles/index.js b/plugins/fetch-scrobbles/index.js index 600f89c7..044bad24 100644 --- a/plugins/fetch-scrobbles/index.js +++ b/plugins/fetch-scrobbles/index.js @@ -52,24 +52,18 @@ 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'}) || [] - monthChartData?.['data']?.push(...scrobbleData?.['data']) + const scrobbleData = await scrobbles.get(key, { type: 'json'}) + if (scrobbleData) monthChartData?.['data']?.push(...scrobbleData?.['data']) } for (const key of threeMonthKeys) { - const scrobbleData = await scrobbles.get(key, { type: 'json'}) || [] - threeMonthChartData?.['data']?.push(...scrobbleData?.['data']) + const scrobbleData = await scrobbles.get(key, { type: 'json'}) + if (scrobbleData) threeMonthChartData?.['data']?.push(...scrobbleData?.['data']) } for (const key of yearKeys) { - let scrobbleData - try { - scrobbleData = await scrobbles?.get(key, { type: 'json'}) - } catch (error) { - console.log("Error: can't get more scrobbles.") - break; - } - yearChartData?.['data']?.push(...scrobbleData?.['data']) + const scrobbleData = await scrobbles?.get(key, { type: 'json'}) + if (scrobbleData) yearChartData?.['data']?.push(...scrobbleData?.['data']) } fs.writeFileSync('./src/_data/json/weekly-top-artists-chart.json', JSON.stringify({...weeklyChartData, timestamp: `${lastWeek.set({ hour: 8, minute: 0, second: 0, millisecond: 0 }).toMillis()}` }))