aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/lib/setupRaven.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/scripts/lib/setupRaven.js b/app/scripts/lib/setupRaven.js
index e6e511640..e1dc4bb8b 100644
--- a/app/scripts/lib/setupRaven.js
+++ b/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)