1 files changed, 8 insertions, 2 deletions
diff --git a/src/bundle/Server.ts b/src/bundle/Server.ts
index 3ceebc06..e6f8d17c 100644
--- a/src/bundle/Server.ts
+++ b/src/bundle/Server.ts
@@ -75,8 +75,14 @@ async function main() {
// Filter breadcrumbs that we don't care about
if (x.message?.includes("identified as")) return false;
if (x.message?.includes("[WebSocket] closed")) return false;
- if (x.message?.includes("Got Resume -> cancel not implemented")) return false;
- if (x.message?.includes("[Gateway] New connection from")) return false;
+ if (
+ x.message?.includes(
+ "Got Resume -> cancel not implemented",
+ )
+ )
+ return false;
+ if (x.message?.includes("[Gateway] New connection from"))
+ return false;
return true;
});
|