Skip to content

Commit

Permalink
RAM Leak Fix (#1981)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mephisto090 committed Jun 30, 2022
1 parent b875541 commit 664ca05
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/PuppeteerSharp/NetworkEventManager.cs
Expand Up @@ -25,6 +25,7 @@ internal void Forget(string requestId)
_queuedEventGroupMap.TryRemove(requestId, out _);
_queuedRedirectInfoMap.TryRemove(requestId, out _);
_responseReceivedExtraInfoMap.TryRemove(requestId, out _);
_httpRequestsMap.TryRemove(requestId, out _);
}

internal List<ResponseReceivedExtraInfoResponse> ResponseExtraInfo(string networkRequestId)
Expand Down

0 comments on commit 664ca05

Please sign in to comment.