Skip to content

Commit

Permalink
Merge pull request #511 from microsoft/MihaZupan-patch-1
Browse files Browse the repository at this point in the history
Fix CaseSensitiveEqualHelper null check
  • Loading branch information
MihaZupan authored Nov 5, 2020
2 parents aa87462 + c85d8e9 commit 3832fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ReverseProxy/Utilities/CaseSensitiveEqualHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal static bool Equals(IReadOnlyList<string> list1, IReadOnlyList<string> l
return true;
}

if (list1 == null && list2 == null)
if (list1 == null || list2 == null)
{
return false;
}
Expand Down

0 comments on commit 3832fd3

Please sign in to comment.