Fix meta might be null issue

This commit is contained in:
Wu Cheng-Han
2016-08-15 10:59:40 +08:00
parent 3bcb36b46c
commit 9bf7b92707
2 changed files with 5 additions and 1 deletions

View File

@@ -108,6 +108,7 @@ function responseHackMD(res, note) {
} catch(err) {
//na
}
if (!meta) meta = {};
var title = models.Note.decodeTitle(note.title);
title = models.Note.generateWebTitle(meta.title || title);
var template = config.hackmdpath;
@@ -222,6 +223,7 @@ function showPublishNote(req, res, next) {
} catch(err) {
//na
}
if (!meta) meta = {};
var createtime = note.createdAt;
var updatetime = note.lastchangeAt;
var text = S(body).escapeHTML().s;
@@ -546,6 +548,7 @@ function showPublishSlide(req, res, next) {
} catch(err) {
//na
}
if (!meta) meta = {};
var text = S(body).escapeHTML().s;
var title = models.Note.decodeTitle(note.title);
title = models.Note.generateWebTitle(meta.title || title);