summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/bg/js/util.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js
index 504deeda..1e49e33c 100644
--- a/ext/bg/js/util.js
+++ b/ext/bg/js/util.js
@@ -43,7 +43,9 @@ function promiseCallback(promise, callback) {
return promise.then(result => {
callback({result});
}).catch(error => {
+ /* eslint-disable */
console.log(error);
+ /* eslint-enable */
callback({error});
});
}