Ready use the JSON-RPC 2.0 based stateless proxy

This commit is contained in:
Namhyeon Go 2024-11-23 21:50:32 +09:00
parent ac31e5e884
commit b45a7cdd6c

View File

@ -496,7 +496,7 @@ var HTTPObject = function(engine) {
"url": url, "url": url,
"headers": this.getRequestHeaders(function(x) { "headers": this.getRequestHeaders(function(x) {
return Object.keys(x).reduce(function(a, k) { return Object.keys(x).reduce(function(a, k) {
a.push(x[k]); a.push(k + ": " + x[k]);
return a; return a;
}, []); }, []);
}), }),