Add normalize back

This commit is contained in:
Hao Kung 2017-05-22 15:09:51 -07:00
parent 795040a8a1
commit e594854cd2
1 changed files with 1 additions and 1 deletions

View File

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