Skip to content

Commit

Permalink
Same-entity rule for 1p cookie protections (#1035)
Browse files Browse the repository at this point in the history
  • Loading branch information
sammacbeth committed Jan 28, 2022
1 parent d210c7d commit f116522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/js/background/redirect.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function handleRequest (requestData) {
}

// If we didn't block this script and it's a tracker, notify the content script.
if (requestData.type === 'script' && tracker) {
if (requestData.type === 'script' && tracker && !tracker.firstParty) {
utils.sendTabMessage(requestData.tabId, {
type: 'update',
trackerDefinition: true,
Expand Down

0 comments on commit f116522

Please sign in to comment.