fix: clean up edge func

This commit is contained in:
Cory Dransfeldt 2024-03-19 15:15:05 -07:00
parent 95e95861bf
commit 67722896b1
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -133,14 +133,14 @@ export default async () => {
return {}
});
const track = trackRes["recenttracks"]["track"][0];
const artist = artistCapitalization(track["artist"]["#text"]);
let mbid = track["artist"]["mbid"];
let genre = '';
const mbidMap = (artist) => mbidRes[artist.toLowerCase()] || "";
const artistCapitalization = (artist) => artistCapitalzationRes[artist?.toLowerCase()] || artist
const artist = artistCapitalization(track["artist"]["#text"]);
const mbidMap = () => mbidRes[track["artist"]["#text"].toLowerCase()] || "";
// mbid mismatches
if (mbidMap(artist) !== "") mbid = mbidMap(artist);
if (mbidMap() !== "") mbid = mbidMap();
const artistUrl = mbid
? `https://musicbrainz.org/artist/${mbid}`

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "8.3.7",
"version": "8.3.8",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {