diff --git a/src/renderer/redux/actions/app.js b/src/renderer/redux/actions/app.js index ef79a0f6ab6..0d94fe4d4b8 100644 --- a/src/renderer/redux/actions/app.js +++ b/src/renderer/redux/actions/app.js @@ -198,8 +198,13 @@ export function doCheckUpgradeAvailable() { }); if (["win32", "darwin"].includes(process.platform)) { - // On Windows and Mac, updates happen silently - autoUpdater.checkForUpdates(); + // On Windows and Mac, updates happen silently through + // electron-updater. + const autoUpdateDeclined = selectAutoUpdateDeclined(state); + + if (!autoUpdateDeclined) { + autoUpdater.checkForUpdates(); + } return; }