1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-28 11:00:38 +12:00

Call XHR.open even if the request will be blocked

Without calling it an error may be thrown if other XHR parameters are set.
This commit is contained in:
Deathamns 2014-11-11 15:15:21 +01:00 committed by gorhill
parent d9c9627758
commit abb13424b4

View file

@ -317,8 +317,8 @@ if (self.chrome) {
"open = function(u) {",
"return block(u, 'popup') ? null : wo.apply(this, [].slice.call(arguments));",
"};",
"XMLHttpRequest.prototype.open = function(m, u) {",
"return block(u, 'xmlhttprequest') ? null : xo.apply(this, [].slice.call(arguments));",
"XMLHttpRequest.prototype.open = function(m, u, s) {",
"return xo.apply(this, block(u, 'xmlhttprequest') ? ['HEAD', u, s] : [].slice.call(arguments));",
"};"
];