From 47adec90277206620f143016aa4def069fa7226e Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 18:33:33 -0700 Subject: [PATCH] chore: debug --- api/scrobble.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/scrobble.js b/api/scrobble.js index 461bb59e..d20d6b4b 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -145,6 +145,8 @@ export default async (request) => { timestamp, genre: artistInfo?.['genre'] || '' } + console.log(artistInfo) + console.log(artistInfo?.['genre']) const scrobbleData = await scrobbles.get(`${weekKey()}`, { type: 'json'}) const windowData = await scrobbles.get('window', { type: 'json'}) await scrobbles.setJSON('now-playing', {...trackScrobbleData, ...{ url: `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`}})