From 804ac240a4905c422bb06a4763dabca8ad9c3139 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 6 Apr 2024 08:35:00 -0700 Subject: [PATCH] fix: urls for artists without an mbid --- api/scrobble.js | 8 ++++++-- package.json | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/api/scrobble.js b/api/scrobble.js index 2a67bacd..ee09cc1d 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -68,7 +68,7 @@ export default async (request) => { return {} }); const artistData = artistRes['artist']; - const mbid = artistData['mbid'] + const mbid = artistData['mbid'] || '' const genreUrl = `https://musicbrainz.org/ws/2/artist/${mbid}?inc=aliases+genres&fmt=json`; const genreRes = await fetch(genreUrl, { type: "json", @@ -125,7 +125,11 @@ export default async (request) => { } 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']}`}}) + const artistUrl = (artistInfo?.['mbid'] && artistInfo?.['mbid'] !== '') ? `http://musicbrainz.org/artist/${artistInfo?.['mbid']}` : `https://musicbrainz.org/search?query=${artist.replace( + /\s+/g, + '+' + )}&type=artist` + await scrobbles.setJSON('now-playing', {...trackScrobbleData, ...{ url: artistUrl }}) let scrobbleUpdate = scrobbleData let windowUpdate = windowData; if (scrobbleUpdate?.['data']) scrobbleUpdate['data'].push(trackScrobbleData) diff --git a/package.json b/package.json index e9b4d01b..490ca919 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "9.6.2", + "version": "9.6.3", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {