From b65b2d4b3a119ccde6254f9a2e3b333d8f2a4739 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Sat, 28 Nov 2020 08:55:25 +1100 Subject: [PATCH] Added ignore to xdr encoding failure --- src/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index b38a76a..8597757 100644 --- a/src/index.js +++ b/src/index.js @@ -18,7 +18,12 @@ if (process.env.NODE_ENV === "production") { release: "owlbear-rodeo@" + process.env.REACT_APP_VERSION, // Ignore resize error as it is triggered by going fullscreen on slower computers // Ignore quota error - ignoreErrors: ["ResizeObserver loop limit exceeded", "QuotaExceededError"], + // Ignore XDR encoding failure bug in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=1678243 + ignoreErrors: [ + "ResizeObserver loop limit exceeded", + "QuotaExceededError", + "XDR encoding failure", + ], }); }