Fix content filter bug

pull/146/head
johnniang 2019-05-06 23:47:23 +08:00
parent d16a1f8de6
commit 147b8ce225
1 changed files with 1 additions and 1 deletions

View File

@ -29,6 +29,6 @@ public class ContentFilter extends AbstractAuthenticationFilter {
@Override
protected void doAuthenticate(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
// Do nothing
return;
filterChain.doFilter(request, response);
}
}