Browse Source
Merge pull request #3205 from abpframework/akin/refactored-async-methods-that-dont-have-any-async-transaction
refactored async method
pull/3209/head
Alper Ebicoglu
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml.cs
|
|
|
@ -147,7 +147,7 @@ namespace Volo.Abp.Account.Web.Pages.Account |
|
|
|
var properties = SignInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl); |
|
|
|
properties.Items["scheme"] = provider; |
|
|
|
|
|
|
|
return Challenge(properties, provider); |
|
|
|
return await Task.FromResult(Challenge(properties, provider)); |
|
|
|
} |
|
|
|
|
|
|
|
[UnitOfWork] |
|
|
|
|