fix: urls for artists without an mbid
This commit is contained in:
parent
28073ebd65
commit
804ac240a4
2 changed files with 7 additions and 3 deletions
|
@ -68,7 +68,7 @@ export default async (request) => {
|
||||||
return {}
|
return {}
|
||||||
});
|
});
|
||||||
const artistData = artistRes['artist'];
|
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 genreUrl = `https://musicbrainz.org/ws/2/artist/${mbid}?inc=aliases+genres&fmt=json`;
|
||||||
const genreRes = await fetch(genreUrl, {
|
const genreRes = await fetch(genreUrl, {
|
||||||
type: "json",
|
type: "json",
|
||||||
|
@ -125,7 +125,11 @@ export default async (request) => {
|
||||||
}
|
}
|
||||||
const scrobbleData = await scrobbles.get(`${weekKey()}`, { type: 'json'})
|
const scrobbleData = await scrobbles.get(`${weekKey()}`, { type: 'json'})
|
||||||
const windowData = await scrobbles.get('window', { 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 scrobbleUpdate = scrobbleData
|
||||||
let windowUpdate = windowData;
|
let windowUpdate = windowData;
|
||||||
if (scrobbleUpdate?.['data']) scrobbleUpdate['data'].push(trackScrobbleData)
|
if (scrobbleUpdate?.['data']) scrobbleUpdate['data'].push(trackScrobbleData)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "9.6.2",
|
"version": "9.6.3",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue