Skip to content

Commit

Permalink
Fixed incorrect JavaScript variable used in the script.
Browse files Browse the repository at this point in the history
  • Loading branch information
acsbendi committed May 28, 2022
1 parent 667d8ad commit 95efe6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ XMLHttpRequest.prototype.send = function (body) {
lastXmlhttpRequestPrototypeMethod = null;
xmlhttpRequestUrl = null;
xmlhttpRequestHeaders = "";
this._send(fixedBody);
this._send(body);
};
window._fetch = window.fetch;
Expand Down

0 comments on commit 95efe6f

Please sign in to comment.