diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-07 21:04:58 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-10-08 21:44:25 -0400 |
commit | 6a6e200ef947b92576351e39fc30b6653a576d70 (patch) | |
tree | ebe6bce781d597eb04dbea85395d9795409897d0 /ext/bg/js/options.js | |
parent | 88de4271843197d37243a9ac360236f9dfb414e1 (diff) |
Update rejections to use Error
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 2c9de1ec..a2ab8877 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -402,7 +402,7 @@ function optionsLoad() { chrome.storage.local.get(['options'], store => { const error = chrome.runtime.lastError; if (error) { - reject(error); + reject(new Error(error)); } else { resolve(store.options); } @@ -431,7 +431,7 @@ function optionsSave(options) { chrome.storage.local.set({options: JSON.stringify(options)}, () => { const error = chrome.runtime.lastError; if (error) { - reject(error); + reject(new Error(error)); } else { resolve(); } |