mirror of https://github.com/halo-dev/halo
Fix content filter bug
parent
d16a1f8de6
commit
147b8ce225
|
@ -29,6 +29,6 @@ public class ContentFilter extends AbstractAuthenticationFilter {
|
||||||
@Override
|
@Override
|
||||||
protected void doAuthenticate(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
|
protected void doAuthenticate(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
|
||||||
// Do nothing
|
// Do nothing
|
||||||
return;
|
filterChain.doFilter(request, response);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue