diff --git a/lib/web/note/controller.js b/lib/web/note/controller.js index af7507934..9b943c575 100644 --- a/lib/web/note/controller.js +++ b/lib/web/note/controller.js @@ -78,7 +78,7 @@ exports.showNote = function (req, res, next) { title, opengraph }) - }) + }, null, true) } exports.createFromPOST = function (req, res, next) { @@ -119,7 +119,7 @@ exports.doAction = function (req, res, next) { default: return res.redirect(config.serverURL + '/' + noteId) } - }, null, false) + }) } exports.downloadMarkdown = function (req, res, note) { diff --git a/lib/web/note/util.js b/lib/web/note/util.js index 6842eebcf..732152287 100644 --- a/lib/web/note/util.js +++ b/lib/web/note/util.js @@ -5,7 +5,7 @@ const errors = require('../../errors') const fs = require('fs') const path = require('path') -exports.findNote = function (req, res, callback, include, createIfNotFound = true) { +exports.findNote = function (req, res, callback, include = null, createIfNotFound = false) { const id = req.params.noteId || req.params.shortid models.Note.parseNoteId(id, function (err, _id) { if (err) {