From 0f5ed2738599e2b8872cfdea25dd6ffb63c49809 Mon Sep 17 00:00:00 2001 From: maliming <6908465+maliming@users.noreply.github.com> Date: Mon, 14 Sep 2020 20:51:15 +0800 Subject: [PATCH] Fix typo. --- .../AspNetIdentity/LinkLoginExtensionGrantValidator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/LinkLoginExtensionGrantValidator.cs b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/LinkLoginExtensionGrantValidator.cs index cc74afa175..7c719d627e 100644 --- a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/LinkLoginExtensionGrantValidator.cs +++ b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/LinkLoginExtensionGrantValidator.cs @@ -93,7 +93,7 @@ namespace Volo.Abp.IdentityServer.AspNetIdentity Guid? linkTenantId = null; if (!context.Request.Raw["LinkTenantId"].IsNullOrWhiteSpace()) { - if (!Guid.TryParse(context.Request.Raw["LinkUserId"], out var parsedGuid)) + if (!Guid.TryParse(context.Request.Raw["LinkTenantId"], out var parsedGuid)) { context.Result = new GrantValidationResult {