fix: cache policy

This commit is contained in:
Cory Dransfeldt 2024-02-29 14:03:24 -08:00
parent d75b022f5f
commit 8135f5b43f
No known key found for this signature in database
2 changed files with 13 additions and 16 deletions

View file

@ -79,21 +79,19 @@ export default async () => {
if (Object.keys(traktRes).length) { if (Object.keys(traktRes).length) {
if (traktRes["type"] === "episode") { if (traktRes["type"] === "episode") {
return Response.json( return new Response(JSON.stringify({
{
content: `📺 <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}">${traktRes["show"]["title"]}</a> • <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}/seasons/${traktRes["episode"]["season"]}/episodes/${traktRes["episode"]["number"]}">${traktRes["episode"]["title"]}</a>`, content: `📺 <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}">${traktRes["show"]["title"]}</a> • <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}/seasons/${traktRes["episode"]["season"]}/episodes/${traktRes["episode"]["number"]}">${traktRes["episode"]["title"]}</a>`,
}, }),
{...headers} { headers }
); )
} }
if (traktRes["type"] === "movie") { if (traktRes["type"] === "movie") {
return Response.json( return new Response(JSON.stringify({
{
content: `🎥 <a href="https://trakt.tv/movies/${traktRes["movie"]["ids"]["slug"]}">${traktRes["movie"]["title"]}</a>`, content: `🎥 <a href="https://trakt.tv/movies/${traktRes["movie"]["ids"]["slug"]}">${traktRes["movie"]["title"]}</a>`,
}, }),
{...headers} { headers }
); )
} }
} }
@ -154,17 +152,16 @@ export default async () => {
genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.["name"] || ""; genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.["name"] || "";
} }
return Response.json( return new Response(JSON.stringify({
{
content: `${emojiMap( content: `${emojiMap(
genre, genre,
track["artist"]["#text"] track["artist"]["#text"]
)} <a href="${trackUrl}">${track["name"]}</a> by <a href="${artistUrl}">${ )} <a href="${trackUrl}">${track["name"]}</a> by <a href="${artistUrl}">${
track["artist"]["#text"] track["artist"]["#text"]
}</a>`, }</a>`,
}, }),
{...headers} { headers }
); )
}; };
export const config = { export const config = {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "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.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {