From b7b2038ba5f24eb31492ed17a9c86c7ea83e9feb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 21 Apr 2024 21:50:56 -0700 Subject: [PATCH] fix: edge func --- api/now-playing.js | 1 - 1 file changed, 1 deletion(-) diff --git a/api/now-playing.js b/api/now-playing.js index 744b975c..fa42fe11 100644 --- a/api/now-playing.js +++ b/api/now-playing.js @@ -87,7 +87,6 @@ export default async () => { }, }) .then((data) => { - if (data.status) return {} if (data.ok) return data?.json(); throw new Error('Something went wrong with the Trakt endpoint.'); })