You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set options.Lockout.DefaultLockoutTimeSpan = TimeSpan.FromHours(4);
and forced the lockout at 7.30 (UTC). However, in the database 9.30 is saved instead of the expected result 11.30. I think it is caused by your time conversions. Using the EntityFramework ASP.NET Identity storage it works as expected.
The text was updated successfully, but these errors were encountered:
@Niklas-Peter Thanks for reporting this. Yes, it looks like this logic was moved from the EF store into the UserManager at some point. Which package (aspnet or aspnetcore) are you using and what version?
Thanks,
Dave
My local time (Germany) is UTC+2.
I set
options.Lockout.DefaultLockoutTimeSpan = TimeSpan.FromHours(4);
and forced the lockout at 7.30 (UTC). However, in the database 9.30 is saved instead of the expected result 11.30. I think it is caused by your time conversions. Using the EntityFramework ASP.NET Identity storage it works as expected.
The text was updated successfully, but these errors were encountered: