chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 11:41:25 -07:00
parent 95e3dacbba
commit 67d62e5b41
No known key found for this signature in database

View file

@ -12,8 +12,6 @@ export default async (request, context) => {
const id = params.get('id')
const data = await request.formData()
const payload = JSON.parse(data.get('payload'))
console.log(payload)
console.log(payload['Metadata'])
const artists = getStore('artists')
@ -80,8 +78,10 @@ export default async (request, context) => {
genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.["name"] || "";
const artistData = {
mbid,
genre
genre,
image: `https://cdn.coryd.dev/artists/${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase())}.jpg`
}
console.log(artistData)
await artists.setJSON(artistKey, JSON.stringify(artistData))
}
}