fix #2125 - cannot login using WebAssembly, remove granular 404 logging as it is already managed by url mapping, make IModule ReleaseVersions optional when using EF Core migrations

This commit is contained in:
Shaun Walker
2022-04-13 19:27:12 -04:00
parent 355d0405f4
commit 6dc1d42d90
5 changed files with 7 additions and 4 deletions

View File

@ -163,7 +163,8 @@
if (!twofactor)
{
user = await UserService.LoginUserAsync(user, false, false);
bool setCookie = (PageState.Runtime == Oqtane.Shared.Runtime.WebAssembly);
user = await UserService.LoginUserAsync(user, setCookie, false);
}
else
{