Skip to content

Commit

Permalink
add missing request body (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirdarckcat committed Jan 9, 2021
1 parent 0416819 commit 6d15158
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion v2/background/src/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ export class FetchIntercepted extends Intercepted {
requestId: this.id,
method: request.method,
url: request.url,
headers: FetchIntercepted.convertHeaders(request.headers)
headers: FetchIntercepted.convertHeaders(request.headers),
postData: request.postData ? btoa(request.postData) : undefined
});
}

Expand Down

0 comments on commit 6d15158

Please sign in to comment.