You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix double encoding of path parts when parsing a PSGI env with a SCRIPT_NAME set.
Make sure path is decoded and unescaped as expected by to_string.
The test $env used in the regression test included is a stripped down version of the result of:
use HTTP::Request::Common 'GET';
use HTTP::Message::PSGI 'req_to_psgi';
my $script_name = ...;
my $path = ...;
$env = req_to_psgi( GET( 'http://localhost:8080'.$script_name.$path ), SCRIPT_NAME => $script_name );
0 commit comments