diff --git a/background/usercss-helper.js b/background/usercss-helper.js index eda62a50..84c2e5e9 100644 --- a/background/usercss-helper.js +++ b/background/usercss-helper.js @@ -24,10 +24,7 @@ var usercssHelper = (function () { function wrapReject(pending) { return pending.then(result => ({status: 'success', result})) - .catch(err => { - console.error(err); - return {status: 'error', result: err.message || String(err)}; - }); + .catch(err => ({status: 'error', result: err.message || String(err)})); } // Parse the source and find the duplication