From cf735f4678b9c7ee6702cb6f75b2fe687018d158 Mon Sep 17 00:00:00 2001 From: xnacly Date: Wed, 18 Aug 2021 16:52:34 +0200 Subject: fixed timeout request by not throwing an issue --- cdn/src/routes/attachments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cdn') diff --git a/cdn/src/routes/attachments.ts b/cdn/src/routes/attachments.ts index 6ce64ed4..ee73ac4d 100644 --- a/cdn/src/routes/attachments.ts +++ b/cdn/src/routes/attachments.ts @@ -11,7 +11,7 @@ const router = Router(); router.post("/:channel_id", multer.single("file"), async (req: Request, res: Response) => { if (req.headers.signature !== Config.get().security.requestSignature) throw new HTTPError("Invalid request signature"); - if (!req.file) return; + if (!req.file) throw new HTTPError("Invalid request signature"); const { buffer, mimetype, size, originalname, fieldname } = req.file; const { channel_id } = req.params; -- cgit 1.4.1