We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bae030 commit 648fa4cCopy full SHA for 648fa4c
emain/emain.ts
@@ -546,6 +546,14 @@ process.on("uncaughtException", (error) => {
546
if (caughtException) {
547
return;
548
}
549
+
550
+ // Check if the error is related to QUIC protocol, if so, ignore (can happen with the updater)
551
+ if (error?.message?.includes("net::ERR_QUIC_PROTOCOL_ERROR")) {
552
+ console.log("Ignoring QUIC protocol error:", error.message);
553
+ console.log("Stack Trace:", error.stack);
554
+ return;
555
+ }
556
557
caughtException = true;
558
console.log("Uncaught Exception, shutting down: ", error);
559
console.log("Stack Trace:", error.stack);
0 commit comments