From 27481949e76710fe2e6706c81456d11277881968 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 15:51:15 -0700 Subject: [PATCH] chore: scrobbling --- api/music.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']) })