fix: conditional access
This commit is contained in:
parent
2614dff452
commit
acfeb6135f
1 changed files with 2 additions and 2 deletions
|
@ -53,12 +53,12 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
|
|
||||||
for (const key of monthKeys) {
|
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'])
|
monthChartData?.['data'].push(...scrobbleData?.['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key of threeMonthKeys) {
|
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'])
|
threeMonthChartData?.['data'].push(...scrobbleData?.['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key of yearKeys) {
|
for (const key of yearKeys) {
|
||||||
|
|
Reference in a new issue