chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-30 15:58:16 -07:00
parent 27481949e7
commit e9c16f8fbe
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -31,14 +31,14 @@ export default async (request) => {
if (weeksArr.length > 0) {
weeksArr.forEach(async (week) => {
const weekData = await scrobbles.get(week, { type: 'json'})
scrobbleData.push(weekData['data'])
scrobbleData.push(...weekData['data'])
})
} else if (weeksString) {
const weekData = await scrobbles.get(weeksString, { type: 'json'})
scrobbleData.push(weekData['data'])
scrobbleData.push(...weekData['data'])
} else {
const windowData = await scrobbles.get('window', { type: 'json'})
scrobbleData.push(windowData['data'])
scrobbleData.push(...windowData['data'])
}
return new Response(JSON.stringify({ data: scrobbleData }),

0
src/_data/music.js Normal file
View file