From b66a887184dfaa3c13fb9840abceccfae7b74214 Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 26 Apr 2017 13:13:41 -0700 Subject: [PATCH] Don't check for updates in the MAS build // FREEBIE --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index bc46d97dd..38a2dd42f 100644 --- a/main.js +++ b/main.js @@ -148,7 +148,7 @@ function createWindow () { // Some APIs can only be used after this event occurs. app.on('ready', function() { console.log('app ready'); - if (!config.get('disableAutoUpdate')) { + if (!process.mas && !config.get('disableAutoUpdate')) { autoUpdater.addListener('update-downloaded', function() { autoUpdater.quitAndInstall() });