4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

Check every 15 minutes for update, not only on startup

This commit is contained in:
AlphaX-Projects 2022-03-01 10:24:06 +01:00 committed by GitHub
parent 0510d1553f
commit c1b08a9f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,9 @@ if (!isLock) {
if (process.platform === 'win32') {
app.setAppUserModelId("org.qortal.QortalUI");
}
autoUpdater.checkForUpdatesAndNotify();
setInterval(() => {
autoUpdater.checkForUpdatesAndNotify();
}, 1000 * 60 * 15)
})
app.on('window-all-closed', function () {
if (process.platform !== 'darwin') {