Added a verification to avoid the error while quitting the app.

pull/8612/head
Hubert 2023-08-03 15:45:07 -03:00
parent ea7c7f6447
commit 4fc44cd952
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ export default class ElectronAppWrapper {
// so that it can tell us if we can really close the app or not.
// Search for "appClose" event for closing logic on renderer side.
event.preventDefault();
this.win_.webContents.send('appClose');
if (this.win_) this.win_.webContents.send('appClose');
} else {
// If the renderer process has responded, check if we can close or not
if (this.rendererProcessQuitReply_.canClose) {