Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions relay-filter/src/browser_extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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",
Expand All @@ -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 {
Expand Down