fix: defaults

This commit is contained in:
Cory Dransfeldt 2024-04-28 17:21:26 -07:00
parent fb9d16d6a9
commit f1ffcfbff8

View file

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