Test updates4b #7639

Closed
jessopb wants to merge 13 commits from test-updates4b into master
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 207a1ad88c - Show all commits

View file

@ -34,6 +34,7 @@ try {
upgradeDisabled = false;
}
autoUpdater.autoDownload = !upgradeDisabled;
autoUpdater.allowPrerelease = false;
// This is set to true if an auto update has been downloaded through the Electron
// auto-update system and is ready to install. If the user declined an update earlier,

View file

@ -213,6 +213,8 @@ function AppWrapper() {
const enabled = makeSelectClientSetting(SETTINGS.ENABLE_PRERELEASE_UPDATES)(state);
if (enabled) {
autoUpdater.allowPrerelease = true;
} else {
autoUpdater.allowPrerelease = false;
}
}
}, [persistDone]);