From 36dd33bbd9c91478d892a68528b843e5146f6e83 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 29 Mar 2024 11:48:07 -0700 Subject: [PATCH] chore: scrobbling --- api/scrobble.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 4e375c43..c562e9fd 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -14,10 +14,6 @@ export default async (request, context) => { const payload = JSON.parse(data.get('payload')) const artists = getStore('artists') - - const debug = getStore('debug') - await debug.setJSON('debug', JSON.stringify(payload)) - if (!id) return new Response(JSON.stringify({ status: 'Bad request', }), @@ -36,7 +32,9 @@ export default async (request, context) => { const album = payload['Metadata']['parentTitle'] const track = payload['Metadata']['title'] const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase() - const artistInfo = await artists.getJSON(artistKey) + const artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob + + // if there is no artist blob, populate one if (!artistInfo) { const trackRes = await fetch( `https://ws.audioscrobbler.com/2.0/?method=track.getInfo&api_key=${MUSIC_KEY}&artist=${artist}&track=${track}&format=json`,