Fix image path problem when using filesystem backend

This commit is contained in:
NV 2017-02-09 14:07:36 +09:00
parent 6587e7ccc6
commit 90c83ebd5b
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -502,7 +502,7 @@ app.post('/uploadimage', function (req, res) {
switch (config.imageUploadType) {
case 'filesystem':
res.send({
link: url.resolve(config.serverurl, files.image.path.match(/^public(.+$)/)[1])
link: url.resolve(config.serverurl + '/', files.image.path.match(/^public\/(.+$)/)[1])
});
break;