Merge pull request #7335 from miniak/set-default-error-mode
Add process.setDefaultErrorMode()
This commit is contained in:
commit
772c456513
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ void NodeBindings::Initialize() {
|
||||||
// uv_init overrides error mode to suppress the default crash dialog, bring
|
// uv_init overrides error mode to suppress the default crash dialog, bring
|
||||||
// it back if user wants to show it.
|
// it back if user wants to show it.
|
||||||
std::unique_ptr<base::Environment> env(base::Environment::Create());
|
std::unique_ptr<base::Environment> env(base::Environment::Create());
|
||||||
if (env->HasVar("ELECTRON_DEFAULT_ERROR_MODE"))
|
if (is_browser_ || env->HasVar("ELECTRON_DEFAULT_ERROR_MODE"))
|
||||||
SetErrorMode(GetErrorMode() & ~SEM_NOGPFAULTERRORBOX);
|
SetErrorMode(GetErrorMode() & ~SEM_NOGPFAULTERRORBOX);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue