From a1c39006de566205870cdedbd9cb33d0a933f5a4 Mon Sep 17 00:00:00 2001 From: frankiebee Date: Thu, 6 Apr 2017 20:01:56 +0200 Subject: Fix wakeUps: fix spelling cut wakeup time in half --- mascara/src/proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mascara/src/proxy.js') diff --git a/mascara/src/proxy.js b/mascara/src/proxy.js index 5ead75f94..2316f4e18 100644 --- a/mascara/src/proxy.js +++ b/mascara/src/proxy.js @@ -3,7 +3,7 @@ const SWcontroller = require('client-sw-ready-event/lib/sw-client.js') const SwStream = require('sw-stream/lib/sw-stream.js') const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js') -let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000 +let intervalDelay = Math.floor(Math.random() * (20000 - 1000)) + 1000 const background = new SWcontroller({ fileName: '/background.js', letBeIdle: false, -- cgit