Merge branch 'master' into DepauMD
This commit is contained in:
commit
4395b1dcfa
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
'use strict'
|
'use strict'
|
||||||
const url = require('url')
|
const URL = require('url').URL
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
|
||||||
const config = require('../../config')
|
const config = require('../../config')
|
||||||
|
@ -16,5 +16,5 @@ exports.uploadImage = function (imagePath, callback) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
callback(null, url.URL.resolve(config.serverURL + '/uploads/', path.basename(imagePath)))
|
callback(null, (new URL(path.basename(imagePath), config.serverURL + '/uploads/')).href)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue