2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 22:58:28 +00:00

fix: silent check on startup

This commit is contained in:
18alantom 2022-02-03 15:35:46 +05:30
parent af0e8523ed
commit bee9501b27

View File

@ -229,6 +229,9 @@ autoUpdater.autoDownload = false;
autoUpdater.autoInstallOnAppQuit = false;
autoUpdater.on('checking-for-update', () => {
if (!checkedForUpdate) {
return;
}
mainWindow.webContents.send(IPC_CHANNELS.CHECKING_FOR_UPDATE);
});