diff --git a/relay-filter/src/browser_extensions.rs b/relay-filter/src/browser_extensions.rs index e7ff3d2a1e0..4f72f1d7294 100644 --- a/relay-filter/src/browser_extensions.rs +++ b/relay-filter/src/browser_extensions.rs @@ -76,7 +76,9 @@ lazy_static! { null\sis\snot\san\sobject\s\(evaluating\s'elt.parentNode'\)| # Dragon Web Extension from Nuance Communications # See: https://forum.sentry.io/t/error-in-raven-js-plugin-setsuspendstate/481/ - plugin\.setSuspendState\sis\snot\sa\sfunction + plugin\.setSuspendState\sis\snot\sa\sfunction| + # Chrome extension message passing failure + Extension\scontext\sinvalidated "# ) .expect("Invalid browser extensions filter (Exec Vals) Regex"); @@ -197,7 +199,6 @@ mod tests { let exceptions = [ "what does conduitPage even do", "null is not an object (evaluating 'elt.parentNode')", - "plugin.setSuspendState is not a function", "some error on top.GLOBALS", "biiig problem on originalCreateNotification", "canvas.contentDocument", @@ -215,6 +216,7 @@ mod tests { "conduitPage", "null is not an object (evaluating 'elt.parentNode')", "plugin.setSuspendState is not a function", + "Extension context invalidated", ]; for exc_value in &exceptions {