We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a bug when you have Two Factor Auth enabled and press the 'reset recovery codes' button.
GenerateRecoveryCodes.cshtml.cs var recoveryCodes = await _userManager.GenerateNewTwoFactorRecoveryCodesAsync(user, 10);
This line updates the timestamp in AspNetUsers on the RecoveryCodes TokenName row but does not update the TokenValue.
If I manually delete the row before calling that line then everything works.
I am running version 8 of ElCamino and Microsoft.AspNetCore.Identity.UI 8.0.3.
I created a new user to test this.
The text was updated successfully, but these errors were encountered:
Fixing this bug in 9.0 release.
Sorry, something went wrong.
#113 #104 Set value on update token, test added
50a312a
Fixed in v9.0
dlmelendez
No branches or pull requests
There is a bug when you have Two Factor Auth enabled and press the 'reset recovery codes' button.
GenerateRecoveryCodes.cshtml.cs
var recoveryCodes = await _userManager.GenerateNewTwoFactorRecoveryCodesAsync(user, 10);
This line updates the timestamp in AspNetUsers on the RecoveryCodes TokenName row but does not update the TokenValue.
If I manually delete the row before calling that line then everything works.
I am running version 8 of ElCamino and Microsoft.AspNetCore.Identity.UI 8.0.3.
I created a new user to test this.
The text was updated successfully, but these errors were encountered: