diff options
author | hackademix | 2018-10-12 22:35:46 +0200 |
---|---|---|
committer | hackademix | 2018-10-12 22:35:46 +0200 |
commit | e44fce3ebd6c348b9e09304d8b79e90f3867bd60 (patch) | |
tree | a98560cb9dff00a5204cd4f39f319bfca8596aa1 /src/bg | |
parent | 9228798daa13086075907772e424892a9744f3d5 (diff) | |
download | noscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.tar.gz noscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.tar.xz noscript-e44fce3ebd6c348b9e09304d8b79e90f3867bd60.zip |
Set tab restrictions status across all frames.
Diffstat (limited to 'src/bg')
-rw-r--r-- | src/bg/RequestGuard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bg/RequestGuard.js b/src/bg/RequestGuard.js index 8850542..436d043 100644 --- a/src/bg/RequestGuard.js +++ b/src/bg/RequestGuard.js @@ -318,7 +318,7 @@ var RequestGuard = (() => { } capabilities = perms.capabilities; } else { - if (!isMainFrame && type === "sub_frame") { + if (isMainFrame || type === "sub_frame") { await Settings.enforceTabRestrictions(tabId); } } |