diff --git a/platform/firefox/vapi-background-ext.js b/platform/firefox/vapi-background-ext.js index a5a80b8d6..4041d5e53 100644 --- a/platform/firefox/vapi-background-ext.js +++ b/platform/firefox/vapi-background-ext.js @@ -287,7 +287,7 @@ vAPI.Net = class extends vAPI.Net { if ( domainFromHostname(cn) === domainFromHostname(hn) ) { return; } } if ( this.cnameIgnoreList !== null ) { - if ( this.cnameIgnoreList.test(cn) === false ) { return; } + if ( this.cnameIgnoreList.test(cn) ) { return; } } if ( this.cnameIgnoreRootDocument ) { const origin = hostnameFromNetworkURL(details.documentUrl || details.url);