From 67722896b1472db04a4240de8d4bcfcba9b39589 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 19 Mar 2024 15:15:05 -0700 Subject: [PATCH] fix: clean up edge func --- api/now-playing.js | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/now-playing.js b/api/now-playing.js index 7d2acdcf..177f06ce 100644 --- a/api/now-playing.js +++ b/api/now-playing.js @@ -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}` diff --git a/package.json b/package.json index cfd21c3f..fc8a61ef 100644 --- a/package.json +++ b/package.json @@ -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": {