mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-02 20:43:30 +00:00
Merge pull request #347 from codimd/backport-345
findNoteOrCreate: Create new note with empty string instead of `null`
This commit is contained in:
commit
b79341f406
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ exports.findNote = function (req, res, callback, include) {
|
|||
include: include || null
|
||||
}).then(function (note) {
|
||||
if (!note) {
|
||||
return exports.newNote(req, res, null)
|
||||
return exports.newNote(req, res, '')
|
||||
}
|
||||
if (!exports.checkViewPermission(req, note)) {
|
||||
return errors.errorForbidden(res)
|
||||
|
|
Loading…
Reference in a new issue