We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05695d commit d485d03Copy full SHA for d485d03
lib/PuppeteerSharp/Response.cs
@@ -31,7 +31,7 @@ internal Response(
31
_fromDiskCache = responseMessage.FromDiskCache;
32
FromServiceWorker = responseMessage.FromServiceWorker;
33
34
- Headers = new Dictionary<string, string>();
+ Headers = new Dictionary<string, string>(StringComparer.InvariantCultureIgnoreCase);
35
if (responseMessage.Headers != null)
36
{
37
foreach (var keyValue in responseMessage.Headers)
0 commit comments