mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
increase timeout for update checks (#928)
* increase timeout for update checks It seems like, there are lots of them and GitHub is not happy. So increasing timeout 6x should fix that. In the end there is no need to check updates every 5 minutes. Fix #880 * restore check updates on start
This commit is contained in:
parent
6b385036d7
commit
7d05d0f148
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ function init() {
|
|||
|
||||
setInterval(() => {
|
||||
autoUpdater.checkForUpdates();
|
||||
}, ms('5m'));
|
||||
}, ms('30m'));
|
||||
|
||||
isInit = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue