Browse Source

Check every 15 minutes for update, not only on startup

qdn-metadata
AlphaX-Projects 3 years ago committed by GitHub
parent
commit
c1b08a9f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      electron.js

2
electron.js

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

Loading…
Cancel
Save