sentry - move isBrave decoration to insides of try-catch

feature/default_network_editable
kumavis 6 years ago
parent 09c3611171
commit 26b30a031d
  1. 3
      app/scripts/lib/setupRaven.js

@ -24,10 +24,11 @@ function setupRaven (opts) {
const client = Raven.config(ravenTarget, {
release,
transport: function (opts) {
opts.data.extra.isBrave = isBrave
const report = opts.data
try {
// mark browser as brave or not
report.extra.isBrave = isBrave
// handle error-like non-error exceptions
rewriteErrorLikeExceptions(report)
// simplify certain complex error messages (e.g. Ethjs)

Loading…
Cancel
Save