fixed wrong wording in HTTPError
This commit is contained in:
parent
560e1a67e8
commit
c68488d33d
@ -11,7 +11,7 @@ const router = Router();
|
|||||||
router.post("/:channel_id", multer.single("file"), async (req: Request, res: Response) => {
|
router.post("/:channel_id", multer.single("file"), async (req: Request, res: Response) => {
|
||||||
if (req.headers.signature !== Config.get().security.requestSignature)
|
if (req.headers.signature !== Config.get().security.requestSignature)
|
||||||
throw new HTTPError("Invalid request signature");
|
throw new HTTPError("Invalid request signature");
|
||||||
if (!req.file) throw new HTTPError("Invalid request signature");
|
if (!req.file) throw new HTTPError("file missing");
|
||||||
|
|
||||||
const { buffer, mimetype, size, originalname, fieldname } = req.file;
|
const { buffer, mimetype, size, originalname, fieldname } = req.file;
|
||||||
const { channel_id } = req.params;
|
const { channel_id } = req.params;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user