-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
PalB/server/controllers/index.js
Lines 25 to 30 in 9ded714
| if (error) { | |
| res.send(error.message); | |
| } else { | |
| getUser(value).then(({ rows }) => { | |
| res.cookie('name', rows[0].name).redirect('/'); | |
| }).catch((err) => { next(err); }); |
You didn't handle error in all cases.