Update http.js

This commit is contained in:
Namhyeon Go 2024-09-21 14:14:43 +09:00 committed by GitHub
parent 13cb1da59d
commit e575f41a19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -218,6 +218,8 @@ var HTTPObject = function(engine) {
this.proxy.port = proxy['port'] || this.proxy.port; this.proxy.port = proxy['port'] || this.proxy.port;
this.proxy.credential = proxy['credential'] || this.proxy.credential; this.proxy.credential = proxy['credential'] || this.proxy.credential;
} }
console.info("Please check documentation:", availableProxy.documentation);
} }
} }
@ -228,6 +230,7 @@ var HTTPObject = function(engine) {
this.proxy[k] = proxy[k]; this.proxy[k] = proxy[k];
} }
return this; return this;
}; };