Revision eae2250e
Added by koszko over 1 year ago
background/webrequest.js | ||
---|---|---|
129 | 129 |
const queried_url = decodeURIComponent(match[1]); |
130 | 130 |
|
131 | 131 |
if (details.initiator && !queried_url.startsWith(details.initiator)) { |
132 |
console.warn(`Haketilo: Blocked suspicious query of '${url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`); |
|
132 |
console.warn(`Haketilo: Blocked suspicious query of '${queried_url}' by '${details.initiator}'. This might be the result of page fingerprinting the browser.`);
|
|
133 | 133 |
return {cancel: true}; |
134 | 134 |
} |
135 | 135 |
|
Also available in: Unified diff
fix incorrect variable reference