From 3e0a18e0cb2a15bb0ea2126fcb7062ed4eeb51df Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 30 Mar 2024 18:05:07 -0700 Subject: [PATCH] fix: scrobbling --- api/scrobble.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/scrobble.js b/api/scrobble.js index f3e31744..461bb59e 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -143,7 +143,7 @@ export default async (request) => { artist, trackNumber, timestamp, - genre + genre: artistInfo?.['genre'] || '' } const scrobbleData = await scrobbles.get(`${weekKey()}`, { type: 'json'}) const windowData = await scrobbles.get('window', { type: 'json'})