Skip to content

Commit cc9490f

Browse files
committed
Fix Send bug where View data was shared between requests
1 parent 847f2a8 commit cc9490f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model/send/send-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class SendStore {
188188
path: url.pathname,
189189
hostname: url.hostname,
190190
headers: rawHeadersToHeaders(requestInput.headers),
191-
rawHeaders: requestInput.headers,
191+
rawHeaders: _.cloneDeep(requestInput.headers),
192192
body: { buffer: encodedBody },
193193
timingEvents: {
194194
startTime: Date.now()

0 commit comments

Comments
 (0)