From 042ff95294c91a1e89652c738fedb7259739bb15 Mon Sep 17 00:00:00 2001 From: Sam Lindley Date: Sun, 7 Oct 2018 21:29:55 -0700 Subject: [PATCH] Default value for 'updateInterval' The default value for the update interval should be 600,000 ms or 10 minutes as stated in the documentation. --- MMM-NetworkConnection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMM-NetworkConnection.js b/MMM-NetworkConnection.js index 90176b7..c12dbda 100644 --- a/MMM-NetworkConnection.js +++ b/MMM-NetworkConnection.js @@ -11,7 +11,7 @@ Module.register('MMM-NetworkConnection', { // Default module config. defaults: { - updateInterval: 60 * 1000, + updateInterval: 600 * 1000, animationSpeed: 2.5 * 1000, maxTime: 5 * 1000, initialLoadDelay: 2.5 * 1000,