summaryrefslogtreecommitdiff
path: root/lib/web/imageRouter/imgur.js
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-06-01 14:31:44 +0200
committerGitHub2018-06-01 14:31:44 +0200
commit94e015dde7127647f0533f2580c6b7c406c5a759 (patch)
tree839926c5367ac8b64f18f00c906e5be3f61e9b78 /lib/web/imageRouter/imgur.js
parent2ed2a08f6603cfdd144a4be9cfab0653f5e887d5 (diff)
parentb5574466cd715f1bfde156d5622e6d03c4f8405f (diff)
Merge pull request #833 from ahoka/callback
Fix callback validation
Diffstat (limited to 'lib/web/imageRouter/imgur.js')
-rw-r--r--lib/web/imageRouter/imgur.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/imageRouter/imgur.js b/lib/web/imageRouter/imgur.js
index 31d5f55c..2a20002c 100644
--- a/lib/web/imageRouter/imgur.js
+++ b/lib/web/imageRouter/imgur.js
@@ -11,7 +11,7 @@ exports.uploadImage = function (imagePath, callback) {
}
if (!callback || typeof callback !== 'function') {
- callback(new Error('Callback has to be a function'), null)
+ logger.error('Callback has to be a function')
return
}