inverted boolean for #1033

pull/1057/merge
Justin Richer 2016-07-08 13:00:26 -04:00
parent 39bae3a160
commit 7177854416
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public class AuthorizationRequestFilter extends GenericFilterBean {
HttpSession session = request.getSession();
// skip everything that's not an authorize URL
if (requestMatcher.matches(request)) {
if (!requestMatcher.matches(request)) {
chain.doFilter(req, res);
return;
}