-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(filter): Filter webkit error #2088
Conversation
no longer blocked: getsentry/sentry-javascript#7993 (comment) |
@@ -39,7 +39,8 @@ static EXTENSION_EXC_VALUES: Lazy<Regex> = Lazy::new(|| { | |||
# See: https://forum.sentry.io/t/error-in-raven-js-plugin-setsuspendstate/481/ | |||
plugin\.setSuspendState\sis\snot\sa\sfunction| | |||
# Chrome extension message passing failure | |||
Extension\scontext\sinvalidated | |||
Extension\scontext\sinvalidated| | |||
webkit-masked-url: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to have also hidden
in there as requested in the linked issue? Or having only webkit-masked-url
should be fine?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the way hidden
is included seems a bit too irregular on the events here: getsentry/sentry-javascript#7993 (comment)
whereas almost all have in common webkit-masked-url:
if i want to include hidden then i think the pattern would be something like webkit-masked-url:.*hidden
, but I'm not sure if theres a point to this because I don't think we will have false positives with the way this PR does it
getsentry/sentry-javascript#7993
The added regex pattern should filter out the webkit issues linked from here: getsentry/sentry-javascript#7993 (comment)
The source is likely from safari extensions.