Update http.js

This commit is contained in:
Namhyeon Go 2022-05-04 15:52:15 +09:00 committed by GitHub
parent 8a7b5c4a96
commit 76fe50d910
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,7 @@ var HTTPObject = function(engine) {
this.saveTo = null;
this.isLoggingCookie = false;
this.debuggingText = '';
this.create = function() {
if (this.engine == "MSXML") {
@ -473,6 +474,9 @@ var HTTPObject = function(engine) {
// Get response text
responseText = this.interface.exec(cmd);
// Get debuging text
this.debuggingText = this.interface.stderr;
}
}