From eae2250e77c53c5e16725b591f51f5d197ac4efa Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Wed, 9 Mar 2022 18:10:46 +0100 Subject: fix incorrect variable reference --- background/webrequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background/webrequest.js b/background/webrequest.js index f0c5b1b..446ad45 100644 --- a/background/webrequest.js +++ b/background/webrequest.js @@ -129,7 +129,7 @@ function on_before_request(details) const queried_url = decodeURIComponent(match[1]); if (details.initiator && !queried_url.startsWith(details.initiator)) { - console.warn(`Haketilo: Blocked suspicious query of '${url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`); + console.warn(`Haketilo: Blocked suspicious query of '${queried_url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`); return {cancel: true}; } -- cgit v1.2.3