From bb44264198fa06e82cd801c605517ff65ba540fe Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 10 Oct 2023 10:23:50 -0700 Subject: [PATCH] chore: conditional index access --- 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 310e7919..a4f17944 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -72,7 +72,7 @@ export default async () => { }) .then((data) => data.json()) .catch() - const track = trackRes.data[0]['attributes'] + const track = trackRes.data?.[0]['attributes'] return Response.json({ artist: aliasArtist(track['artistName']),