Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

Commit

Permalink
GTNPORTAL-2860 RememberMeFilter doesn't work with all type of request
Browse files Browse the repository at this point in the history
  • Loading branch information
trongtt committed Apr 2, 2013
1 parent 179e240 commit b4eee0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain

private void doFilter(HttpServletRequest req, HttpServletResponse resp, FilterChain chain) throws IOException,
ServletException {
if (req.getRemoteUser() == null && "GET".equals(req.getMethod())) {
if (req.getRemoteUser() == null) {
String token = LoginServlet.getRememberMeTokenCookie(req);
if (token != null) {
ExoContainer container = getContainer();
Expand Down

0 comments on commit b4eee0a

Please sign in to comment.