mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 14:44:43 -04:00
findNoteOrCreate: Create new note with empty string instead of null
Backport of #345 to 1.x Signed-off-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
68174c0c6f
commit
4c0094a1f8
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ exports.findNote = function (req, res, callback, include) {
|
||||||
include: include || null
|
include: include || null
|
||||||
}).then(function (note) {
|
}).then(function (note) {
|
||||||
if (!note) {
|
if (!note) {
|
||||||
return exports.newNote(req, res, null)
|
return exports.newNote(req, res, '')
|
||||||
}
|
}
|
||||||
if (!exports.checkViewPermission(req, note)) {
|
if (!exports.checkViewPermission(req, note)) {
|
||||||
return errors.errorForbidden(res)
|
return errors.errorForbidden(res)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue