Small fix for allowPrerelease prop in autoUpdater.

This commit is contained in:
Franco Montenegro 2022-06-22 18:34:24 -03:00
parent 0476a547b1
commit 207a1ad88c
2 changed files with 3 additions and 0 deletions

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]);