diff options
-rw-r--r-- | background/webrequest.js | 2 |
1 files changed, 1 insertions, 1 deletions
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}; } |