Disable Crash Reporter for macOS (Issue)

This commit is contained in:
Korbs Studio 2023-02-24 03:59:20 -05:00
parent 581ad16210
commit e308b766a6

View file

@ -203,6 +203,10 @@ function createWindow () {
}
// Crash Reporter
if (process.platform === 'darwin') {
// Disable crash reporter
}
else {
crashReporter.start({
productName: process.env.Name,
submitURL: process.env.CrashReportServer,
@ -212,6 +216,7 @@ const javaScriptErrorHandler = async (error) => {
await bugsplat.post(error);
app.quit();
}
}
// If you want test the crash reporter, uncomment the code below and wait a few moments.
// setTimeout(() => {process.crash()}, 2400) // Wait a moment, then crash.z