0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Prevented handled errors from being sent to Sentry (#18790)

no refs

As part of the reduce Sentry noise work we decided to temporarily
prevent the submission of "handled" errors to Sentry. This is a
temporary measure to reduce noise while we work on improving the quality
of the error reporting / alerting
This commit is contained in:
Michael Barrett 2023-10-30 16:42:06 +00:00 committed by GitHub
parent 67992d941a
commit 766374a44a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -185,6 +185,12 @@ export default Route.extend(ShortcutsRoute, {
event.tags = event.tags || {};
event.tags.shown_to_user = event.tags.shown_to_user || false;
event.tags.grammarly = !!document.querySelector('[data-gr-ext-installed]');
// Do not report "handled" errors to Sentry
if (event.tags.shown_to_user === true) {
return null;
}
return event;
},
// TransitionAborted errors surface from normal application behaviour