fix: error handling

This commit is contained in:
Cory Dransfeldt 2024-04-21 21:53:31 -07:00
parent b7b2038ba5
commit 57f0d8b1fb

View file

@ -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.');
})