chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 21:52:08 -07:00
parent 95ac9bb6be
commit 7d947521f7
No known key found for this signature in database

View file

@ -108,12 +108,14 @@ export default async (request) => {
// if there is no album blob, populate one
if (!albumInfo) {
console.log(`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase())}&album=${encodeURIComponent(sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase())}&format=json`)
const albumRes = await fetch(
`https://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=${MUSIC_KEY}&artist=${encodeURIComponent(sanitizeMediaString(artist).replace(/\s+/g, '+').toLowerCase())}&album=${encodeURIComponent(sanitizeMediaString(album).replace(/\s+/g, '+').toLowerCase())}&format=json`,
{
type: "json",
}
).then((data) => {
console.log(data)
if (data.ok) return data.json()
throw new Error('Something went wrong with the Last.fm endpoint.');
}).catch(err => {