From bc5bf79e5c4cd5bf3e845a457fa145f8ffa53263 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 18:47:20 -0700 Subject: [PATCH] fix: debug --- api/scrobble.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 91ed13fe..29eb9581 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -145,8 +145,6 @@ 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']}`}})