From ab990d8cec6caba17b6716a12ad3d12bc67ddafd Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Thu, 28 Jun 2018 15:07:58 +0100 Subject: [PATCH] Increase grace period to allow time for key sharing --- src/DecryptionFailureTracker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DecryptionFailureTracker.js b/src/DecryptionFailureTracker.js index 447562af26..58ba1ae8dc 100644 --- a/src/DecryptionFailureTracker.js +++ b/src/DecryptionFailureTracker.js @@ -48,7 +48,7 @@ export default class DecryptionFailureTracker { // Give events a chance to be decrypted by waiting `GRACE_PERIOD_MS` before moving // the failure to `failuresToTrack`. - static GRACE_PERIOD_MS = 5000; + static GRACE_PERIOD_MS = 60000; constructor(fn) { if (!fn || typeof fn !== 'function') {