mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
Join image path with config.serverurl
This commit is contained in:
parent
8db6624ae9
commit
4d3672ae5d
1 changed files with 3 additions and 1 deletions
4
app.js
4
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;
|
||||
|
|
Loading…
Reference in a new issue