Merge pull request #99 from vector-im/t3chguy/remember-updates

Fix riot-desktop manual update check getting stuck on Downloading...
This commit is contained in:
Michael Telatynski 2020-06-08 09:44:23 +01:00 committed by GitHub
commit 2c6000c49e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,7 +82,7 @@ autoUpdater.on('update-available', function() {
// the only time we will get `update-not-available` if `latestUpdateDownloaded` is already set
// is if the user used the Manual Update check and there is no update newer than the one we
// have downloaded, so show it to them as the latest again.
ipcChannelSendUpdateStatus(true);
if (!global.mainWindow) return;
global.mainWindow.webContents.send('update-downloaded', latestUpdateDownloaded);
} else {
ipcChannelSendUpdateStatus(false);