chore: update music api
This commit is contained in:
parent
960652d73d
commit
4614038e31
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Reference in a new issue