diff options
author | Claudius Coenen | 2018-11-14 14:10:14 +0100 |
---|---|---|
committer | Claudius Coenen | 2018-11-14 23:15:36 +0100 |
commit | 858a59529e4b99d5c13e6fce8354cd9e9b00a462 (patch) | |
tree | 08e51914a7d6dd00c993c3b7f2481521a1ba6f0e /lib/web/imageRouter | |
parent | f9aa001ee78e604415c2a6e82f65701a1f07d3c4 (diff) |
switching to eslint for code checking
most rules degraded to WARN, so we don't go insane. This will
change over time. The aim is to conform to a common style
Signed-off-by: Claudius Coenen <opensource@amenthes.de>
Diffstat (limited to 'lib/web/imageRouter')
-rw-r--r-- | lib/web/imageRouter/filesystem.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/imageRouter/filesystem.js b/lib/web/imageRouter/filesystem.js index 8c432b0c..a2f8700d 100644 --- a/lib/web/imageRouter/filesystem.js +++ b/lib/web/imageRouter/filesystem.js @@ -16,5 +16,5 @@ exports.uploadImage = function (imagePath, callback) { return } - callback(null, url.resolve(config.serverURL + '/uploads/', path.basename(imagePath))) + callback(null, url.URL.resolve(config.serverURL + '/uploads/', path.basename(imagePath))) } |