fix errors not being reported using http proxies

This commit is contained in:
2026-08-03 15:59:59 -04:00
parent 1a327b4aaf
commit 54af35299d
2 changed files with 3 additions and 10 deletions

View File

@@ -700,16 +700,9 @@ browser.webRequest.onErrorOccurred.addListener(
if(global_ws === null){ return; }
var pending_req = webreq_completed.get(page.requestId);
if(
// we're not watching that req
!pending_req ||
// some bullshit happened
pending_req.success === false
){
if(!web_response_whitelist.includes(page.type)){
webreq_completed.delete(details.requestId);
webreq_completed.delete(page.requestId);
return;
}