summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/error-handler.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/error-handler.js b/app/error-handler.js
index 81a6cba..f956c22 100644
--- a/app/error-handler.js
+++ b/app/error-handler.js
@@ -21,6 +21,12 @@
try {
const msg = document.getElementById('noVNC_fallback_errormsg');
+ // Work around Firefox bug:
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=1685038
+ if (event.message === "ResizeObserver loop completed with undelivered notifications.") {
+ return false;
+ }
+
// Only show the initial error
if (msg.hasChildNodes()) {
return false;