diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-04-03 15:23:52 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2022-04-03 15:23:52 +0300 |
commit | a64f91b1f710081d69fae207a239ce114fdb100c (patch) | |
tree | 43c8fccdea0b319bb8587bf60c203ac1065de231 /src/pages/background/background.js | |
parent | Restructured exceptions to behave in another way #164 #161 (diff) | |
download | libredirect-a64f91b1f710081d69fae207a239ce114fdb100c.zip |
Tweaked a thing #164 #161
Diffstat (limited to 'src/pages/background/background.js')
-rw-r--r-- | src/pages/background/background.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/background/background.js b/src/pages/background/background.js index 650a48a8..db05d598 100644 --- a/src/pages/background/background.js +++ b/src/pages/background/background.js @@ -97,7 +97,7 @@ browser.webRequest.onBeforeRequest.addListener( generalHelper.isException(new URL(details.frameAncestors[0].url)) ) newUrl = null; - if (generalHelper.isException(url)) newUrl = null; + if (generalHelper.isException(url)) newUrl = 'BYPASSTAB'; if (BYPASSTABs.includes(details.tabId)) newUrl = null; |