diff --git a/src/modules/processing/services/epidemicsound.js b/src/modules/processing/services/epidemicsound.js index 31c5461d..9572295d 100644 --- a/src/modules/processing/services/epidemicsound.js +++ b/src/modules/processing/services/epidemicsound.js @@ -1,4 +1,4 @@ -export default async function (obj) { +export default async function(obj) { let json = await fetch(`https://www.epidemicsound.com/json/track/${obj.id}`).then((r) => { return r.status === 200 ? r.json() : false }).catch(() => { return false });