diff --git a/crates/collab/src/api/events.rs b/crates/collab/src/api/events.rs index 1632c2d798ef1585b263d5a21a0a0b22f240b0b9..377741f434c2f86a3fd46d19878f5eb215f1b628 100644 --- a/crates/collab/src/api/events.rs +++ b/crates/collab/src/api/events.rs @@ -364,21 +364,19 @@ pub async fn post_panic( } fn report_to_slack(panic: &Panic) -> bool { - if panic.os_name == "Linux" { - if panic.payload.contains("ERROR_SURFACE_LOST_KHR") { - return false; - } + if panic.payload.contains("ERROR_SURFACE_LOST_KHR") { + return false; + } - if panic.payload.contains("ERROR_INITIALIZATION_FAILED") { - return false; - } + if panic.payload.contains("ERROR_INITIALIZATION_FAILED") { + return false; + } - if panic - .payload - .contains("GPU has crashed, and no debug information is available") - { - return false; - } + if panic + .payload + .contains("GPU has crashed, and no debug information is available") + { + return false; } true