Removed XSS prompt for timeouts.
This commit is contained in:
parent
da1fdcb173
commit
deb108761d
|
@ -58,7 +58,7 @@ var XSS = (() => {
|
|||
data = [];
|
||||
} catch (e) {
|
||||
error(e, "XSS filter processing %o", xssReq);
|
||||
if (e instanceof TimingException && !/\btimeout\b/i.test(e.message)) {
|
||||
if (e instanceof TimingException) {
|
||||
// we don't want prompts if the request expired / errored first
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue