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": {