diff --git a/src/browser/auto-update-manager.coffee b/src/browser/auto-update-manager.coffee index 5bd945310..a2c239789 100644 --- a/src/browser/auto-update-manager.coffee +++ b/src/browser/auto-update-manager.coffee @@ -77,8 +77,8 @@ class AutoUpdateManager scheduleUpdateCheck: -> checkForUpdates = => @check(hidePopups: true) - thirtyMinutes = 1000 * 60 * 30 - setInterval(checkForUpdates, thirtyMinutes) + fourHours = 1000 * 60 * 60 * 4 + setInterval(checkForUpdates, fourHours) checkForUpdates() check: ({hidePopups}={}) ->