From 1ddc6b111aa4fe3bd4e2f6ebbbe71d7fc6e9d9ae Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Thu, 30 Mar 2017 10:00:30 -0700 Subject: [PATCH] Remove call to Normlize() for now https://github.com/aspnet/Identity/issues/1149#issuecomment-290142263 Can bring it back once we are on 2.0 --- .../UpperInvariantLookupNormalizer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Identity/UpperInvariantLookupNormalizer.cs b/src/Microsoft.AspNetCore.Identity/UpperInvariantLookupNormalizer.cs index 2b482885ea..2bfa958651 100644 --- a/src/Microsoft.AspNetCore.Identity/UpperInvariantLookupNormalizer.cs +++ b/src/Microsoft.AspNetCore.Identity/UpperInvariantLookupNormalizer.cs @@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Identity { return null; } - return key.Normalize().ToUpperInvariant(); + return key.ToUpperInvariant(); } } -} \ No newline at end of file +}