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
This commit is contained in:
Hao Kung 2017-03-30 10:00:30 -07:00 committed by GitHub
parent 9b7b309ced
commit 1ddc6b111a
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.Identity
{
return null;
}
return key.Normalize().ToUpperInvariant();
return key.ToUpperInvariant();
}
}
}
}