Navigation Menu

Skip to content

Commit

Permalink
request.ip
Browse files Browse the repository at this point in the history
request.acceptEncoding

Conflicts:
  • Loading branch information
Tom Robinson committed Oct 17, 2009
1 parent 65c4235 commit c03e4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jack/request.js
Expand Up @@ -119,7 +119,7 @@ Request.prototype.POST = function() {
this.env["jack.request.form_input"] = this.env["jsgi.input"];
this.env["jack.request.form_hash"] = utils.parseMultipart(this.env);
if (!this.env["jack.request.form_hash"]) {
this.env["jack.request.form_vars"] = this.body().decodeToString("utf-8");
this.env["jack.request.form_vars"] = this.body().decodeToString(this.contentCharset() || "utf-8");
this.env["jack.request.form_hash"] = utils.parseQuery(this.env["jack.request.form_vars"]);
//this.env["jsgi.input"].rewind();
}
Expand Down

0 comments on commit c03e4b9

Please sign in to comment.