summaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app.js b/app.js
index b67c77c2..16ef798e 100644
--- a/app.js
+++ b/app.js
@@ -421,8 +421,10 @@ app.post('/uploadimage', function (req, res) {
try {
switch (config.imageUploadType) {
case 'filesystem':
+ var path = require('path');
+
res.send({
- link: files.image.path.match(/^public(.+$)/)[1]
+ link: path.join(config.serverurl, files.image.path.match(/^public(.+$)/)[1])
});
break;