about summary refs log tree commit diff stats
path: root/src/pages
diff options
context:
space:
mode:
authorManeraKai <manerakai@protonmail.com>2023-12-12 14:42:45 +0300
committerManeraKai <manerakai@protonmail.com>2023-12-12 14:42:45 +0300
commite48f68126d620bafe312a6caecc21a63612f8e69 (patch)
tree2039581e7c573ceeedde842f267def2cd2b8cfdb /src/pages
parentAdded Askubuntu to AnonymousOverflow https://github.com/libredirect/browser_e... (diff)
downloadlibredirect-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.js2
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