1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-12 17:26:17 +00:00

Merge pull request #2106 from voidsatisfaction/fix-typo-on-main-app

fix tiny comment typo
This commit is contained in:
Junyoung Choi (Sai)
2018-06-27 04:43:53 +09:00
committed by GitHub

View File

@@ -90,7 +90,7 @@ app.on('ready', function () {
mainWindow.setMenu(menu)
}
// Check update every hour
// Check update every day
setInterval(function () {
checkUpdate()
}, 1000 * 60 * 60 * 24)
@@ -106,7 +106,7 @@ app.on('ready', function () {
checkUpdate()
}
})
}, 10000)
}, 10 * 1000)
ipcServer = require('./ipcServer')
ipcServer.server.start()
})