From 5dd43dbc45b307e61583d6627b041516682f0d3a Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 27 Apr 2022 22:32:11 +0200 Subject: [PATCH] ignore bugs in chrome v102 --- copyparty/web/util.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/copyparty/web/util.js b/copyparty/web/util.js index f4d89645..3ad297e5 100644 --- a/copyparty/web/util.js +++ b/copyparty/web/util.js @@ -89,6 +89,9 @@ function vis_exh(msg, url, lineNo, columnNo, error) { if ((msg + '').indexOf('l2d.js') !== -1) return; // `t` undefined in tapEvent -> hitTestSimpleCustom + if (!/\.js($|\?)/.exec('' + url)) + return; // chrome debugger + var ekey = url + '\n' + lineNo + '\n' + msg; if (ignexd[ekey] || crashed) return;