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 +}