From 92db49314fd2af83365ae7191671ad53fd87be3f Mon Sep 17 00:00:00 2001 From: Tasos Papalyras Date: Sat, 21 Mar 2020 16:04:25 +0200 Subject: [PATCH] Await configuration loading on Windows --- src/main-process/atom-application.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main-process/atom-application.js b/src/main-process/atom-application.js index 097f0c0d6..22a123a0f 100644 --- a/src/main-process/atom-application.js +++ b/src/main-process/atom-application.js @@ -320,11 +320,7 @@ module.exports = class AtomApplication extends EventEmitter { ); }); - // TodoElectronIssue: In electron v2 awaiting the watcher causes some delay - // in Windows machines, which affects directly the startup time. - if (process.platform !== 'win32') { - await this.configFilePromise; - } + await this.configFilePromise; } let optionsForWindowsToOpen = [];