fix: don't create notes if not found in presentation route

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth
2023-07-14 20:01:23 +02:00
parent bf53443c67
commit e7327afbae
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {