Skip to content

Commit a5377ce

Browse files
authored
Use Headers from extraInfo (#2224)
1 parent bfb4597 commit a5377ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/PuppeteerSharp/Response.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ internal Response(
3636
var headers = extraInfo != null ? extraInfo.Headers : responseMessage.Headers;
3737
if (headers != null)
3838
{
39-
foreach (var keyValue in responseMessage.Headers)
39+
foreach (var keyValue in headers)
4040
{
4141
Headers[keyValue.Key] = keyValue.Value;
4242
}

0 commit comments

Comments
 (0)