summaryrefslogtreecommitdiff
path: root/lib/response.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/response.js')
-rw-r--r--lib/response.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js
index 8133b1a0..4df036b7 100644
--- a/lib/response.js
+++ b/lib/response.js
@@ -151,7 +151,7 @@ function newNote (req, res, next) {
var body = ''
if (req.body && req.body.length > config.documentMaxLength) {
return response.errorTooLong(res)
- } else {
+ } else if (req.body) {
body = req.body
}
body = body.replace(/[\r]/g, '')