Skip to content
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.

Commit

Permalink
address fxcop issue (#1393)
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyf19 authored Nov 8, 2018
1 parent 4d70ee7 commit ff820ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/Instance/B2CAuthority.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private string GetCanonicalAuthorityB2C()

private bool InTrustedHostList(string host)
{
if(IsInTrustedHostList(host) || host.EndsWith(B2CTrustedHost))
if(IsInTrustedHostList(host) || host.EndsWith(B2CTrustedHost, StringComparison.OrdinalIgnoreCase))
{
return true;
}
Expand Down

0 comments on commit ff820ed

Please sign in to comment.