chore: scrobbling
This commit is contained in:
parent
ddcf99aa03
commit
a89bb15ea8
1 changed files with 1 additions and 8 deletions
|
@ -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" } }
|
||||
)
|
||||
}
|
||||
|
|
Reference in a new issue