mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-03-09 06:50:05 +00:00
fix typo in RememberMeAuthenticationFilter
This commit is contained in:
parent
19c55372a3
commit
a855b33535
@ -112,7 +112,7 @@ public class RememberMeAuthenticationFilter extends GenericFilterBean implements
|
|||||||
}
|
}
|
||||||
Authentication rememberMeAuth = this.rememberMeServices.autoLogin(request, response);
|
Authentication rememberMeAuth = this.rememberMeServices.autoLogin(request, response);
|
||||||
if (rememberMeAuth != null) {
|
if (rememberMeAuth != null) {
|
||||||
// Attempt authenticaton via AuthenticationManager
|
// Attempt authentication via AuthenticationManager
|
||||||
try {
|
try {
|
||||||
rememberMeAuth = this.authenticationManager.authenticate(rememberMeAuth);
|
rememberMeAuth = this.authenticationManager.authenticate(rememberMeAuth);
|
||||||
// Store to SecurityContextHolder
|
// Store to SecurityContextHolder
|
||||||
|
Loading…
x
Reference in New Issue
Block a user