chore: update music api

This commit is contained in:
Cory Dransfeldt 2024-03-30 20:25:35 -07:00
parent 960652d73d
commit 4614038e31
No known key found for this signature in database

View file

@ -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,