diff options
author | Sheogorath | 2018-06-23 21:47:22 +0200 |
---|---|---|
committer | Sheogorath | 2018-06-23 23:01:01 +0200 |
commit | a2608c319a8c31f9b173dbb5d00221d3ad96739b (patch) | |
tree | 63818fa9b2f00ed1d1c796451b74b21e7244cd36 /lib/web/imageRouter | |
parent | 8fe26988d159b8ad3970f54f256245cece3efce5 (diff) |
Fix possible error if HackMD is started with wrong workdir
In https://github.com/hackmdio/hackmd/issues/834 is described how
starting HackMD crashes when using the wrong working dir.
This is caused by a relative path in our upload routine. This change
should fix it and prevent future crashes.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/web/imageRouter')
-rw-r--r-- | lib/web/imageRouter/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |