Skip to content

Commit

Permalink
Headers should be case insencitive (#1103)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurimas1 authored and kblok committed May 3, 2019
1 parent d05695d commit d485d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PuppeteerSharp/Response.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal Response(
_fromDiskCache = responseMessage.FromDiskCache;
FromServiceWorker = responseMessage.FromServiceWorker;

Headers = new Dictionary<string, string>();
Headers = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase);
if (responseMessage.Headers != null)
{
foreach (var keyValue in responseMessage.Headers)
Expand Down

0 comments on commit d485d03

Please sign in to comment.