From 20a824b0a690fd524671e2e0079e85c6f6356e4a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 10 Oct 2023 11:40:17 -0700 Subject: [PATCH] chore: remove unnecessary response properties --- netlify/edge-functions/now-playing.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 50b096b3..4b3f21a8 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -49,15 +49,12 @@ export default async () => { if (Object.keys(traktRes).length) { if (traktRes['type'] === 'episode') { return Response.json({ - title: traktRes['show']['title'], - episode: traktRes['episode']['title'], text: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`, }) } if (traktRes['type'] === 'movie') { return Response.json({ - title: traktRes['movie']['title'], text: `🎥 ${traktRes['movie']['title']}`, }) } @@ -76,8 +73,6 @@ export default async () => { const artist = aliasArtist(track['artistName']) return Response.json({ - artist, - title: track['name'], text: `🎧 ${track['name']} by ${artist}`, }) }