Skip to content

Commit

Permalink
Fix queryprune for tabless requests
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Nov 10, 2020
1 parent 727aa95 commit 76ef481
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/js/traffic.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,14 @@ const onBeforeBehindTheSceneRequest = function(fctxt) {
fctxt.setRealm('network').toLogger();
}

// Redirected

if ( fctxt.redirectURL !== undefined ) {
return { redirectUrl: fctxt.redirectURL };
}

// Blocked?

if ( result === 1 ) {
return { cancel: true };
}
Expand Down

0 comments on commit 76ef481

Please sign in to comment.