diff --git a/lib/models/note.js b/lib/models/note.js index 9fe023598..7418c47ef 100644 --- a/lib/models/note.js +++ b/lib/models/note.js @@ -93,11 +93,12 @@ module.exports = function (sequelize, DataTypes) { if (!note.content) { var body = null let filePath = null - if (!note.alias) { - filePath = config.defaultNotePath - } else { + if (note.alias) { filePath = path.join(config.docsPath, note.alias + '.md') } + if (!filePath || !Note.checkFileExist(filePath)) { + filePath = config.defaultNotePath + } if (Note.checkFileExist(filePath)) { var fsCreatedTime = moment(fs.statSync(filePath).ctime) body = fs.readFileSync(filePath, 'utf8')