fix: urls for artists without an mbid

This commit is contained in:
Cory Dransfeldt 2024-04-06 08:35:00 -07:00
parent 28073ebd65
commit 804ac240a4
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View file

@ -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)

View file

@ -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": {