fix: fallback urls
This commit is contained in:
parent
98e3d674e6
commit
2cf86f95d9
2 changed files with 3 additions and 9 deletions
|
@ -144,16 +144,10 @@ export default async () => {
|
||||||
|
|
||||||
const artistUrl = mbid
|
const artistUrl = mbid
|
||||||
? `https://musicbrainz.org/artist/${mbid}`
|
? `https://musicbrainz.org/artist/${mbid}`
|
||||||
: `https://musicbrainz.org/search?query=${track["artist"]["#text"].replace(
|
: `https://last.fm/music/${track["artist"]["#text"].toLowerCase().replace(/\s+/g, "+")}`;
|
||||||
/\s+/g,
|
|
||||||
"+"
|
|
||||||
)}&type=artist`;
|
|
||||||
const trackUrl = track["mbid"]
|
const trackUrl = track["mbid"]
|
||||||
? `https://musicbrainz.org/track/${track["mbid"]}`
|
? `https://musicbrainz.org/track/${track["mbid"]}`
|
||||||
: `https://musicbrainz.org/search?query=${track["artist"]["#text"].replace(
|
: track['url'];
|
||||||
/\s+/g,
|
|
||||||
'+'
|
|
||||||
)}&type=artist`;
|
|
||||||
|
|
||||||
if (mbid && mbid !== "") {
|
if (mbid && 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`;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "8.3.8",
|
"version": "8.3.9",
|
||||||
"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