summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-09-28 21:18:01 -0500
committerJesse Luehrs <doy@tozt.net>2012-09-28 21:18:01 -0500
commitc69dba1160e668c90de12e744962db422e30429d (patch)
tree9bdb8f4779d1ef25c159968df7d201602d2a3222
parenta9dd3e9dd96c52c2d2f0cfd8595b93f08a9717cb (diff)
downloadweb-request-c69dba1160e668c90de12e744962db422e30429d.tar.gz
web-request-c69dba1160e668c90de12e744962db422e30429d.zip
oops, this should have been psgi.input
-rw-r--r--lib/Web/Request.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Web/Request.pm b/lib/Web/Request.pm
index 191e4c0..9d5e944 100644
--- a/lib/Web/Request.pm
+++ b/lib/Web/Request.pm
@@ -223,7 +223,7 @@ has _parsed_body => (
}
else {
open my $fh, '<', \$content;
- $self->env->{'psgix.input'} = $fh;
+ $self->env->{'psgi.input'} = $fh;
$self->env->{'psgix.input.buffered'} = 1;
}