diff --git a/src/updater/moduleUpdater.js b/src/updater/moduleUpdater.js index 4c7760f..2ea28e5 100644 --- a/src/updater/moduleUpdater.js +++ b/src/updater/moduleUpdater.js @@ -330,7 +330,8 @@ exports.checkForUpdates = () => { events.emit('checking-for-updates'); - if (skipHost || last > Date.now() - 10000) hostPassed(true); + if (skipHost) hostPassed(); + else if (last > Date.now() - 10000) hostPassed(true); else hostUpdater.checkForUpdates(); };