chore: disallow crashpad forwarding crashes to system crash handler (#278334)

This commit is contained in:
Robo
2025-11-19 21:38:09 +09:00
committed by GitHub
parent 2793b95684
commit 8a34fcfb95

View File

@@ -528,7 +528,8 @@ function configureCrashReporter(): void {
productName: process.env['VSCODE_DEV'] ? `${productName} Dev` : productName,
submitURL,
uploadToServer,
compress: true
compress: true,
ignoreSystemCrashHandler: true
});
}