mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-19 07:54:59 +01:00
delint
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
799ccc6197
commit
861c90c3d8
@ -83,7 +83,7 @@ autoUpdater.on('update-available', function() {
|
|||||||
// is if the user used the Manual Update check and there is no update newer than the one we
|
// 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.
|
// have downloaded, so show it to them as the latest again.
|
||||||
ipcChannelSendUpdateStatus(true);
|
ipcChannelSendUpdateStatus(true);
|
||||||
mainWindow.webContents.send('update-downloaded', latestUpdateDownloaded);
|
global.mainWindow.webContents.send('update-downloaded', latestUpdateDownloaded);
|
||||||
} else {
|
} else {
|
||||||
ipcChannelSendUpdateStatus(false);
|
ipcChannelSendUpdateStatus(false);
|
||||||
}
|
}
|
||||||
@ -95,5 +95,5 @@ autoUpdater.on('update-downloaded', (ev, releaseNotes, releaseName, releaseDate,
|
|||||||
if (!global.mainWindow) return;
|
if (!global.mainWindow) return;
|
||||||
// forward to renderer
|
// forward to renderer
|
||||||
latestUpdateDownloaded = { releaseNotes, releaseName, releaseDate, updateURL };
|
latestUpdateDownloaded = { releaseNotes, releaseName, releaseDate, updateURL };
|
||||||
mainWindow.webContents.send('update-downloaded', latestUpdateDownloaded);
|
global.mainWindow.webContents.send('update-downloaded', latestUpdateDownloaded);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user