Skip to content

Commit

Permalink
fix: forget request will be sent from the _requestWillBeSentMap list. (
Browse files Browse the repository at this point in the history
…#8226)

That forget looked wrong to me. Let me know if this change is correct.
  • Loading branch information
kblok committed Apr 19, 2022
1 parent e93faad commit 4b786c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/NetworkEventManager.ts
Expand Up @@ -140,7 +140,7 @@ export class NetworkEventManager {
}

forgetRequestWillBeSent(networkRequestId: NetworkRequestId): void {
this._requestPausedMap.delete(networkRequestId);
this._requestWillBeSentMap.delete(networkRequestId);
}

getRequestPaused(
Expand Down

0 comments on commit 4b786c9

Please sign in to comment.