Only clean _url part of pdata when redirecting to issuer (#1878,#2124)

This commit is contained in:
Maxime Besson 2020-06-11 18:05:27 +02:00
parent 00da613dfc
commit f9cdb5497a

View File

@ -381,7 +381,7 @@ sub autoRedirect {
)
{
$self->logger->info("Force cleaning pdata");
$req->pdata( {} );
delete $req->{pdata}->{_url};
}
return [ 302, [ Location => $req->{urldc}, $req->spliceHdrs ], [] ];
}