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