From 9a9a8c8c3faafea1bcad32a0b29edc8a2c4d3181 Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 30 May 2017 09:16:44 -0400 Subject: [PATCH] Firefox platform: longer default wait time for deferred tasks --- platform/firefox/vapi-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index 8a3325f47..ab6f6eea2 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -55,7 +55,7 @@ var deferUntil = function(testFn, mainFn, details) { var now = 0, next = details.next || 200, - until = details.until || 2000; + until = details.until || 12800; var check = function() { if ( testFn() === true || now >= until ) {