From b3e4ebd4faa8300ff7a90f80ad85e42a1f023215 Mon Sep 17 00:00:00 2001 From: HyeokjinKang Date: Fri, 4 Feb 2022 22:58:23 +0900 Subject: [PATCH] =?UTF-8?q?dlc=20length=EA=B0=80=200=EC=9D=B4=EB=A9=B4=20?= =?UTF-8?q?=EC=97=90=EB=9F=AC=EB=A5=BC=20=EB=9D=84=EC=9A=B0=EB=8D=98=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=EB=A5=BC=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/index.ts b/src/index.ts index d231469b..50007f3c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -859,18 +859,6 @@ app.get("/store/DLCs", async (req, res) => { "songs", "sale" ); - if (!results.length) { - res - .status(400) - .json( - createErrorResponse( - "failed", - "Failed to Load", - "Failed to load DLC data." - ) - ); - return; - } res.status(200).json({ result: "success", data: results }); });