diff --git a/api/now-playing.js b/api/now-playing.js index fa42fe11..c6993d32 100644 --- a/api/now-playing.js +++ b/api/now-playing.js @@ -87,6 +87,7 @@ export default async () => { }, }) .then((data) => { + if (data.status === 204) return {} if (data.ok) return data?.json(); throw new Error('Something went wrong with the Trakt endpoint.'); })