diff options
Diffstat (limited to 'ext/bg/js/util.js')
| -rw-r--r-- | ext/bg/js/util.js | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/bg/js/util.js b/ext/bg/js/util.js index 914164b1..3ec80350 100644 --- a/ext/bg/js/util.js +++ b/ext/bg/js/util.js @@ -39,6 +39,7 @@ function promiseCallback(promise, callback) {      return promise.then(result => {         callback({result});      }).catch(error => { +        console.log(error);          callback({error});      });  }  |