add Login+2FA support for webauthn

This commit is contained in:
2025-12-18 21:45:11 +01:00
parent b4b2552e7e
commit 08d213e89a
5 changed files with 45 additions and 25 deletions
@@ -86,8 +86,7 @@ public class LocalAuthenticationProvider extends DaoAuthenticationProvider imple
} else {
for (AdditionalAuthenticationProvider<?> provider : providers) {
if (provider.supports(auth.getClass())) {
auth = provider.authenticate(auth);
return this.secondFactorCheck(auth);
return provider.authenticate(auth);
}
}
}