From 63830e6c578c1631ee626ddc45cba87d9209b52a Mon Sep 17 00:00:00 2001 From: cKey <35512826+colinin@users.noreply.github.com> Date: Mon, 23 Nov 2020 15:41:31 +0800 Subject: [PATCH] Fixed bug: Object NullReference in MyProfileService interface --- .../LINGYUN/Abp/Identity/MyProfileAppService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs index 2b02cb316..bec4afa46 100644 --- a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs +++ b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/MyProfileAppService.cs @@ -29,7 +29,7 @@ namespace LINGYUN.Abp.Identity UserManager = userManager; UserRepository = userRepository; SecurityCodeSender = securityCodeSender; - SecurityTokenCache = SecurityTokenCache; + SecurityTokenCache = securityTokenCache; } public virtual async Task ChangeTwoFactorEnabledAsync(ChangeTwoFactorEnabledDto input)