chore: scrobbling

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

View file

@ -40,15 +40,8 @@ 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()
console.log(artistData)
return new Response(JSON.stringify({ data: {
scrobbles: scrobbleData,
artists: artistData,
} }),
return new Response(JSON.stringify({ data: scrobbleData }),
{ headers: { "Content-Type": "application/json" } }
)
}