Skip to content

Commit

Permalink
Merge pull request #1 from fidelity/Fix-issue-3149
Browse files Browse the repository at this point in the history
Fix issue- #3149
  • Loading branch information
xyq175com authored Jul 5, 2022
2 parents 023f6b2 + 7fc318c commit 1e8bb47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private class ServerRpcScope<TRequest, TResponse> : RpcScope<TRequest, TResponse
for (var i = 0; i < metadata.Count; i++)
{
var entry = metadata[i];
if (entry.Key.Equals(key))
if (string.Equals(entry.Key, key, StringComparison.OrdinalIgnoreCase))
{
return new string[1] { entry.Value };
}
Expand Down

0 comments on commit 1e8bb47

Please sign in to comment.