From 996322454bea386d021b4039f0d524a6237ce957 Mon Sep 17 00:00:00 2001 From: Steve Berdy <86739818+steveberdy@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:49:38 -0500 Subject: [PATCH] undo linting --- src/modules/processing/services/epidemicsound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 });