chore: scrobbling
This commit is contained in:
parent
ffa9ef637a
commit
ddcf99aa03
1 changed files with 8 additions and 1 deletions
|
@ -40,8 +40,15 @@ 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()
|
||||||
|
|
||||||
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" } }
|
{ headers: { "Content-Type": "application/json" } }
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue