summaryrefslogtreecommitdiff
path: root/lib/response.js
diff options
context:
space:
mode:
authorCheng-Han, Wu2016-06-17 16:33:58 +0800
committerCheng-Han, Wu2016-06-17 16:33:58 +0800
commita125f80535ecca33cbd7eeac312de224558a186a (patch)
tree6c555227052c337cda371c87f3388857dc3ca424 /lib/response.js
parenta6a107eab9f8e9f5dc42b11ecdb9583d4f2a8685 (diff)
Fix pdf tmp path is missing a folder slash before timestamp
Diffstat (limited to 'lib/response.js')
-rw-r--r--lib/response.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/response.js b/lib/response.js
index 1ed3a5b0..3064d321 100644
--- a/lib/response.js
+++ b/lib/response.js
@@ -296,7 +296,7 @@ function actionPDF(req, res, note) {
if (!fs.existsSync(config.tmppath)) {
fs.mkdirSync(config.tmppath);
}
- var path = config.tmppath + Date.now() + '.pdf';
+ var path = config.tmppath + '/' + Date.now() + '.pdf';
markdownpdf().from.string(body).to(path, function () {
var stream = fs.createReadStream(path);
var filename = title;