diff --git a/mascara/src/proxy.js b/mascara/src/proxy.js index e580076c1..5ead75f94 100644 --- a/mascara/src/proxy.js +++ b/mascara/src/proxy.js @@ -3,8 +3,11 @@ 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 const background = new SWcontroller({ fileName: '/background.js', + letBeIdle: false, + intervalDelay, }) const pageStream = new ParentStream() diff --git a/mascara/src/ui.js b/mascara/src/ui.js index c4866867b..37bb043b8 100644 --- a/mascara/src/ui.js +++ b/mascara/src/ui.js @@ -18,10 +18,13 @@ const container = document.getElementById('app-content') var name = 'popup' window.METAMASK_UI_TYPE = name +let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000 + const background = new SWcontroller({ fileName: '/background.js', + letBeIdel: false, + intervalDelay, }) - // Setup listener for when the service worker is read background.on('ready', (readSw) => { let connectionStream = SwStream({ diff --git a/package.json b/package.json index 78a8520f4..67648d781 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "bluebird": "^3.5.0", "browser-passworder": "^2.0.3", "browserify-derequire": "^0.9.4", - "client-sw-ready-event": "^1.0.2", + "client-sw-ready-event": "^2.2.1", "clone": "^1.0.2", "copy-to-clipboard": "^2.0.0", "debounce": "^1.0.0",