From 4614038e31afbeaf547a308f1cddd2cca724cae0 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 20:25:35 -0700 Subject: [PATCH] chore: update music api --- api/music.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/music.js b/api/music.js index da35e62b..c6eba27e 100644 --- a/api/music.js +++ b/api/music.js @@ -36,6 +36,8 @@ export default async (request) => { if (weeksArr.length > 0) { weeksArr.forEach(async (week) => { const weekData = await scrobbles.get(week, { type: 'json'}) + console.log(week) + console.log(week) scrobbleData.push(...weekData['data']) }) } else if (weeksString) { @@ -46,7 +48,6 @@ export default async (request) => { scrobbleData.push(...windowData['data']) } - console.log(scrobbleData) return new Response(JSON.stringify({ scrobbles: scrobbleData, artists: artistsMap,