Skip to content

Commit

Permalink
Fix CaseSensitiveEqualHelper null check
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan authored Nov 3, 2020
1 parent fa71a5f commit c85d8e9
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 c85d8e9

Please sign in to comment.