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}); }); }