fix: addtl checks
This commit is contained in:
parent
471f0309f4
commit
3d0d101287
1 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
console.log('Error fetching scrobble data using monthKeys')
|
console.log('Error fetching scrobble data using monthKeys')
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
monthChartData?.['data']?.push(...scrobbleData?.['data'])
|
if (scrobbleData) monthChartData?.['data']?.push(...scrobbleData?.['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key of threeMonthKeys) {
|
for (const key of threeMonthKeys) {
|
||||||
|
@ -70,7 +70,7 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
console.log('Error fetching scrobble data using threeMonthKeys')
|
console.log('Error fetching scrobble data using threeMonthKeys')
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
threeMonthChartData?.['data']?.push(...scrobbleData?.['data'])
|
if (scrobbleData) threeMonthChartData?.['data']?.push(...scrobbleData?.['data'])
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const key of yearKeys) {
|
for (const key of yearKeys) {
|
||||||
|
@ -81,7 +81,7 @@ export const onPreBuild = async ({ constants }) => {
|
||||||
console.log('Error fetching scrobble data using yearKeys')
|
console.log('Error fetching scrobble data using yearKeys')
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
yearChartData?.['data']?.push(...scrobbleData?.['data'])
|
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()}` }))
|
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()}` }))
|
||||||
|
|
Reference in a new issue