mirror of https://github.com/status-im/codimd.git
Merge pull request #1103 from SISheogorath/fix/localImageUpload
Fix usage of new URL API
This commit is contained in:
commit
f492fea418
|
@ -1,5 +1,5 @@
|
|||
'use strict'
|
||||
const url = require('url')
|
||||
const URL = require('url').URL
|
||||
const path = require('path')
|
||||
|
||||
const config = require('../../config')
|
||||
|
@ -16,5 +16,5 @@ exports.uploadImage = function (imagePath, callback) {
|
|||
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 New Issue