fixed prompt filter coding error

pull/604/head
Justin Richer 2014-05-24 23:16:29 -04:00
parent 73b00905bb
commit f4a1a2acff
1 changed files with 1 additions and 0 deletions

View File

@ -81,6 +81,7 @@ public class PromptFilter extends GenericFilterBean {
// skip everything that's not an authorize URL
if (!request.getRequestURI().startsWith("/authorize")) {
chain.doFilter(req, res);
return;
}
// we have to create our own auth request in order to get at all the parmeters appropriately