From 6630d847509f0390a509897744347d9e04501908 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 28 Aug 2023 11:48:29 -0700 Subject: [PATCH] fix: valid mbid + no genre --- netlify/edge-functions/now-playing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index d3789364..b9cd3078 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -51,7 +51,7 @@ export default async () => { type: 'json', }).catch() const genreData = await genreRes.json() - genre = genreData.genres.sort((a, b) => b.count - a.count)[0]['name'] + genre = genreData.genres.sort((a, b) => b.count - a.count)[0]?.['name'] || '' } return Response.json({