From f71be559274857e6ea00f6513f61bd8d3255733a Mon Sep 17 00:00:00 2001 From: steven nguyen Date: Fri, 22 Oct 2021 14:38:16 -0500 Subject: [PATCH] fix lint 2 --- src/main-process/atom-window.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main-process/atom-window.js b/src/main-process/atom-window.js index 6bc818902..ba090d5f8 100644 --- a/src/main-process/atom-window.js +++ b/src/main-process/atom-window.js @@ -239,7 +239,7 @@ module.exports = class AtomWindow extends EventEmitter { this.browserWindow.webContents.on( 'render-process-gone', async (event, { reason }) => { - if (reason === "crashed") { + if (reason === 'crashed') { if (this.headless) { console.log('Renderer process crashed, exiting'); this.atomApplication.exit(100);