mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1893608 - [remote] Fix error this.postData is undefined in NetworkRequest class r=webdriver-reviewers,Sasha
We do not have any test checking requests with postData, and due to a technical limitation we only have this field available in the response events, so the error from my previous patch went unnoticed. Differential Revision: https://phabricator.services.mozilla.com/D208737
This commit is contained in:
parent
e37fb36313
commit
3ecf68afd6
@ -84,7 +84,7 @@ export class NetworkRequest {
|
||||
}
|
||||
|
||||
get postDataSize() {
|
||||
return this.#postData ? this.postData.size : 0;
|
||||
return this.#postData ? this.#postData.size : 0;
|
||||
}
|
||||
|
||||
get redirectCount() {
|
||||
|
Loading…
Reference in New Issue
Block a user