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:
parent
0510d1553f
commit
c1b08a9f3d
@ -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') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user