diff options
author | Christoph (Sheogorath) Kern | 2018-06-23 23:42:15 +0200 |
---|---|---|
committer | GitHub | 2018-06-23 23:42:15 +0200 |
commit | 7c7cc289f2c2b2e33a32ea32a6e97ea1410cc63e (patch) | |
tree | ff8bb16ab594d3d374d52c342a8f87849c1fe922 /lib | |
parent | 87824d21e82237d205b2d109516214c1f4d40c38 (diff) | |
parent | a2608c319a8c31f9b173dbb5d00221d3ad96739b (diff) |
Merge pull request #853 from SISheogorath/fix/imgUpload
Fix possible error if HackMD is started with wrong workdir
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config/default.js | 1 | ||||
-rw-r--r-- | lib/config/index.js | 1 | ||||
-rw-r--r-- | lib/web/imageRouter/index.js | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 1b124b3e..f88c17b3 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -45,6 +45,7 @@ module.exports = { errorPath: './public/views/error.ejs', prettyPath: './public/views/pretty.ejs', slidePath: './public/views/slide.ejs', + uploadsPath: './public/uploads', // session sessionName: 'connect.sid', sessionSecret: 'secret', diff --git a/lib/config/index.js b/lib/config/index.js index 7853dbad..b8bf64cc 100644 --- a/lib/config/index.js +++ b/lib/config/index.js @@ -173,6 +173,7 @@ config.hackmdPath = path.join(appRootPath, config.hackmdPath) config.errorPath = path.join(appRootPath, config.errorPath) config.prettyPath = path.join(appRootPath, config.prettyPath) config.slidePath = path.join(appRootPath, config.slidePath) +config.uploadsPath = path.join(appRootPath, config.uploadsPath) // make config readonly config = deepFreeze(config) diff --git a/lib/web/imageRouter/index.js b/lib/web/imageRouter/index.js index f7e031af..f3c2decf 100644 --- a/lib/web/imageRouter/index.js +++ b/lib/web/imageRouter/index.js @@ -16,7 +16,7 @@ imageRouter.post('/uploadimage', function (req, res) { form.keepExtensions = true if (config.imageUploadType === 'filesystem') { - form.uploadDir = 'public/uploads' + form.uploadDir = config.uploadsPath } form.parse(req, function (err, fields, files) { |