From 039aea4150d92b47803bca1add45e2c7b84eb261 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Fri, 25 Jan 2019 09:20:51 -0500 Subject: [PATCH] Restore missing return statement --- src/main-process/auto-updater-win32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main-process/auto-updater-win32.js b/src/main-process/auto-updater-win32.js index 062d290b9..053ef040d 100644 --- a/src/main-process/auto-updater-win32.js +++ b/src/main-process/auto-updater-win32.js @@ -39,7 +39,7 @@ class AutoUpdater extends EventEmitter { } supportsUpdates () { - SquirrelUpdate.existsSync() + return SquirrelUpdate.existsSync() } checkForUpdates () {