From 97d2771826df76b0e221a6b38dcfa062c9bc0ce9 Mon Sep 17 00:00:00 2001 From: Page Date: Sun, 4 May 2014 21:22:03 +0100 Subject: [PATCH] Change automatic update check to every 5 mins instead of 15. --- src/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.coffee b/src/app.coffee index cfd10105..70435232 100644 --- a/src/app.coffee +++ b/src/app.coffee @@ -50,5 +50,5 @@ Promise.all([newUuid, oldUuid, version]) console.log('Starting periodic check for updates..') setInterval(-> application.update() - , 15 * 60 * 1000) # Every 15 mins + , 5 * 60 * 1000) # Every 5 mins application.update()