From 3b810d3196d5f0937398792df7cf69f6f7cbfb62 Mon Sep 17 00:00:00 2001 From: Lilia Date: Mon, 23 Oct 2017 10:44:05 -0700 Subject: [PATCH] Don't check for auto updates on linux (#1592) There aren't any! // FREEBIE --- app/auto_update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auto_update.js b/app/auto_update.js index 424650b99..27a4206b5 100644 --- a/app/auto_update.js +++ b/app/auto_update.js @@ -11,7 +11,7 @@ const RESTART_BUTTON = 0; const LATER_BUTTON = 1; function autoUpdateDisabled() { - return process.mas || config.get('disableAutoUpdate'); + return process.platform === 'linux' || process.mas || config.get('disableAutoUpdate'); } function checkForUpdates() {