From a67758e5afeaf1fcb80b9732c9fb40a15013aeb4 Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 10 Mar 2017 06:42:57 +0900 Subject: [PATCH] Fix #238 --- src/api/private/signin.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/api/private/signin.ts b/src/api/private/signin.ts index fe3b5f7084..afa83e50c3 100644 --- a/src/api/private/signin.ts +++ b/src/api/private/signin.ts @@ -33,7 +33,9 @@ export default async (req: express.Request, res: express.Response) => { }); if (user === null) { - res.status(404).send('user not found'); + res.status(404).send({ + error: 'user not found' + }); return; } @@ -53,7 +55,9 @@ export default async (req: express.Request, res: express.Response) => { res.sendStatus(204); } else { - res.status(400).send('incorrect password'); + res.status(400).send({ + error: 'incorrect password' + }); } // Append signin history