Skip to content

Commit

Permalink
Remove extra space.
Browse files Browse the repository at this point in the history
  • Loading branch information
i386 committed Nov 16, 2016
1 parent fe56f87 commit d25704e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public boolean process(HttpServletRequest req, HttpServletResponse resp, FilterC
return false;
}
// Github will not follow redirects https://github.com/isaacs/github/issues/574
pathInfo = pathInfo.endsWith("/") ? pathInfo : pathInfo + '/';
pathInfo = pathInfo.endsWith("/") ? pathInfo : pathInfo + '/';
if (!pathInfo.equals(getExclusionPath())) {
return false;
}
Expand Down

0 comments on commit d25704e

Please sign in to comment.