summaryrefslogtreecommitdiff
path: root/lib/response.js
diff options
context:
space:
mode:
authorMax Wu2018-02-17 00:47:50 +0800
committerWu Cheng-Han2018-02-17 00:57:00 +0800
commit15ef54c2dc8147ad49cca286d0591aeb5dbaa6f3 (patch)
treeed756a1d61243319c9b4af227dc93450e3d1813f /lib/response.js
parente79373883390f28b2154b4892fee7cf466add58a (diff)
Fix to show 500 message when got error in parseNoteId
Signed-off-by: Max Wu <jackymaxj@gmail.com>
Diffstat (limited to 'lib/response.js')
-rw-r--r--lib/response.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js
index c874ce9c..41e8c336 100644
--- a/lib/response.js
+++ b/lib/response.js
@@ -146,7 +146,8 @@ function findNote (req, res, callback, include) {
var id = req.params.noteId || req.params.shortid
models.Note.parseNoteId(id, function (err, _id) {
if (err) {
- logger.log(err)
+ logger.error(err)
+ return response.errorInternalError(res)
}
models.Note.findOne({
where: {