chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-30 16:33:04 -07:00
parent ffa9ef637a
commit ddcf99aa03
No known key found for this signature in database

View file

@ -40,8 +40,15 @@ export default async (request) => {
const windowData = await scrobbles.get('window', { type: 'json'})
scrobbleData.push(...windowData['data'])
}
const artists = getStore('artists')
const artistData = await artists.list()
return new Response(JSON.stringify({ data: scrobbleData }),
console.log(artistData)
return new Response(JSON.stringify({ data: {
scrobbles: scrobbleData,
artists: artistData,
} }),
{ headers: { "Content-Type": "application/json" } }
)
}