From 655ce1af77b289da481e074d309ad42d4965b207 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 15 May 2015 11:33:22 -0700 Subject: [PATCH] 30 minutes -> 4 hours --- src/browser/auto-update-manager.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}={}) ->