mirror of
https://github.com/electron/electron.git
synced 2026-01-27 00:09:09 -05:00
Only start crash service on Windows.
This commit is contained in:
@@ -22,9 +22,7 @@ class CrashReporter
|
||||
|
||||
start = -> binding.start productName, companyName, submitUrl, autoSubmit, ignoreSystemCrashHandler, extra
|
||||
|
||||
if process.platform is 'darwin'
|
||||
start()
|
||||
else
|
||||
if process.platform is 'win32'
|
||||
args = [
|
||||
"--reporter-url=#{submitUrl}"
|
||||
"--application-name=#{productName}"
|
||||
@@ -34,5 +32,7 @@ class CrashReporter
|
||||
|
||||
spawn process.execPath, args, {env, detached: true}
|
||||
start()
|
||||
else
|
||||
start()
|
||||
|
||||
module.exports = new CrashReporter
|
||||
|
||||
Reference in New Issue
Block a user