From a7479f11f96aab11fa6c23de9dc464df54004d20 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 29 Mar 2024 12:11:39 -0700 Subject: [PATCH] chore: scrobbling --- api/scrobble.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/scrobble.js b/api/scrobble.js index 0d43855e..20a83c07 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -34,6 +34,9 @@ export default async (request, context) => { const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase() const artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob + console.log('artist', artist) + console.log('track', track) + // if there is no artist blob, populate one if (!artistInfo) { const trackRes = await fetch( @@ -57,6 +60,7 @@ export default async (request, context) => { console.log(err); return {} }); + console.log(trackRes) const trackData = trackRes["recenttracks"]["track"][0]; let mbid = trackRes['track']['artist']['mbid'] const mbidMap = () => mbidRes[trackData['artist']['#text'].toLowerCase()] || "";