From: Neil Lunn Date: Tue, 19 Nov 2013 05:46:11 +0000 (+1100) Subject: Documentation fix for Catalyst::Response::from_psgi_response X-Git-Tag: 5.90052~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=faa1bcff15461a252a6d427e5cf3c22c62c38277 Documentation fix for Catalyst::Response::from_psgi_response Signed-off-by: John Napiorkowski --- diff --git a/lib/Catalyst/Response.pm b/lib/Catalyst/Response.pm index b57f84c..86b6b10 100644 --- a/lib/Catalyst/Response.pm +++ b/lib/Catalyst/Response.pm @@ -362,7 +362,7 @@ Example: sub myaction :Local Args { my ($self, $c) = @_; - $c->res->from_psgi_response($app->($self->env)); + $c->res->from_psgi_response($app->($c->req->env)); } Please note this does not attempt to map or nest your PSGI application under