Skip to content

Commit

Permalink
Add comparison parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman committed Apr 17, 2023
1 parent 812ec3a commit df6d0a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ApiException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ public ApiException(string message, Exception innerException) : base(message, in
/// <summary>
/// The HTTP response headers.
/// </summary>
public IDictionary<string, IEnumerable<string>> ResponseHeaders { get; set; } = new Dictionary<string, IEnumerable<string>>();
public IDictionary<string, IEnumerable<string>> ResponseHeaders { get; set; } = new Dictionary<string, IEnumerable<string>>(StringComparer.OrdinalIgnoreCase);
}

0 comments on commit df6d0a7

Please sign in to comment.