From b3bb9ba28ccd1c87c31f94097129bf1d4f0f720e Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Sun, 22 Sep 2024 20:59:51 +0900 Subject: [PATCH] Update http.js --- lib/http.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/http.js b/lib/http.js index fe958c1..c3011f7 100644 --- a/lib/http.js +++ b/lib/http.js @@ -1027,6 +1027,7 @@ var HTTPObject = function(engine) { this.attachDebugger = function(_debugger) { this.setProxy({ + "enabled": true, "provider": _debugger.toLowerCase() }); this.isVerifySSL = false; @@ -1154,7 +1155,7 @@ exports.parseURL = parseURL; exports.DEFAULT_USER_AGENT = DEFAULT_USER_AGENT; exports.defaultUserAgent = DEFAULT_USER_AGENT; // compatible with the specific case -exports.VERSIONINFO = "HTTP client module (http.js) version 0.7.29"; +exports.VERSIONINFO = "HTTP client module (http.js) version 0.7.30"; exports.AUTHOR = "abuse@catswords.net"; exports.global = global; exports.require = global.require;