diff options
author | ManeraKai <manerakai@protonmail.com> | 2023-12-12 14:42:45 +0300 |
---|---|---|
committer | ManeraKai <manerakai@protonmail.com> | 2023-12-12 14:42:45 +0300 |
commit | e48f68126d620bafe312a6caecc21a63612f8e69 (patch) | |
tree | 2039581e7c573ceeedde842f267def2cd2b8cfdb /src/pages | |
parent | Added Askubuntu to AnonymousOverflow https://github.com/libredirect/browser_e... (diff) | |
download | libredirect-e48f68126d620bafe312a6caecc21a63612f8e69.zip |
Fixed a bug that bypassses iframes in frontends pages https://github.com/libredirect/browser_extension/issues/866
Diffstat (limited to 'src/pages')
-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 4b8f1ca2..9057f64a 100644 --- a/src/pages/background/background.js +++ b/src/pages/background/background.js @@ -71,7 +71,7 @@ browser.webRequest.onBeforeRequest.addListener( if (tabIdRedirects[details.tabId] != false) tabIdRedirects[details.tabId] = false return null } - console.info("Redirecting", url.href, "=>", newUrl) + console.log("Redirecting", url.href, "=>", newUrl) return { redirectUrl: newUrl } } return null |