chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-30 15:51:15 -07:00
parent ad422c22d6
commit 27481949e7
No known key found for this signature in database

View file

@ -29,7 +29,7 @@ export default async (request) => {
const scrobbles = getStore('scrobbles')
const scrobbleData = []
if (weeksArr.length > 0) {
weeks.forEach(async (week) => {
weeksArr.forEach(async (week) => {
const weekData = await scrobbles.get(week, { type: 'json'})
scrobbleData.push(weekData['data'])
})