diff --git a/api/music.js b/api/music.js index 89289f22..0fdd0da0 100644 --- a/api/music.js +++ b/api/music.js @@ -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']) })