Skip to content

Commit

Permalink
revert beforeSend for ie11 and edge
Browse files Browse the repository at this point in the history
  • Loading branch information
aulonm committed Apr 7, 2021
1 parent 5820a70 commit 11d9e59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Unreleased

# [Release v1.1.17] 2021-04-08

- (revert) Drop all events to sentry if they are either <=IE11 || Edge


# [Release v1.1.16] 2021-04-08

- Drop all events to sentry if they are either <=IE11 || Edge
Expand Down
6 changes: 0 additions & 6 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,6 @@ if (production) {
dsn: production ? envs.VUE_APP_SENTRY_DSN : process.env.VUE_APP_SENTRY_DSN,
logErrors: true,
autoSessionTracking: false,
beforeSend(event) {
if ((!!window.MSInputMethodContext && !!document.documentMode) || navigator.userAgent.indexOf('Edge') >= 0) {
return false;
}
return event;
},
});
}

Expand Down

0 comments on commit 11d9e59

Please sign in to comment.