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'})
|
const windowData = await scrobbles.get('window', { type: 'json'})
|
||||||
scrobbleData.push(...windowData['data'])
|
scrobbleData.push(...windowData['data'])
|
||||||
}
|
}
|
||||||
const artists = getStore('artists')
|
|
||||||
const artistData = await artists.list()
|
|
||||||
|
|
||||||
console.log(artistData)
|
return new Response(JSON.stringify({ data: scrobbleData }),
|
||||||
|
|
||||||
return new Response(JSON.stringify({ data: {
|
|
||||||
scrobbles: scrobbleData,
|
|
||||||
artists: artistData,
|
|
||||||
} }),
|
|
||||||
{ headers: { "Content-Type": "application/json" } }
|
{ headers: { "Content-Type": "application/json" } }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue