From 8135f5b43f752d23654250bbfefade99d55cb054 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 29 Feb 2024 14:03:24 -0800 Subject: [PATCH] fix: cache policy --- api/now-playing.js | 27 ++++++++++++--------------- package.json | 2 +- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/api/now-playing.js b/api/now-playing.js index b5201c94..243334d1 100644 --- a/api/now-playing.js +++ b/api/now-playing.js @@ -79,21 +79,19 @@ export default async () => { if (Object.keys(traktRes).length) { if (traktRes["type"] === "episode") { - return Response.json( - { + return new Response(JSON.stringify({ content: `📺 ${traktRes["show"]["title"]} • ${traktRes["episode"]["title"]}`, - }, - {...headers} - ); + }), + { headers } + ) } if (traktRes["type"] === "movie") { - return Response.json( - { + return new Response(JSON.stringify({ content: `🎥 ${traktRes["movie"]["title"]}`, - }, - {...headers} - ); + }), + { headers } + ) } } @@ -154,17 +152,16 @@ export default async () => { genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.["name"] || ""; } - return Response.json( - { + return new Response(JSON.stringify({ content: `${emojiMap( genre, track["artist"]["#text"] )} ${track["name"]} by ${ track["artist"]["#text"] }`, - }, - {...headers} - ); + }), + { headers } + ) }; export const config = { diff --git a/package.json b/package.json index 21ba4fec..9e926b13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "6.9.3", + "version": "6.9.4", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {