mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
this fixes #473
This commit is contained in:
parent
adbbd74436
commit
5201946c3f
2 changed files with 4 additions and 1 deletions
|
@ -202,6 +202,9 @@ Matrix.prototype.clearRegisters = function() {
|
|||
|
||||
var is3rdParty = function(srcHostname, desHostname) {
|
||||
var srcDomain = domainFromHostname(srcHostname);
|
||||
if ( srcDomain === '' ) {
|
||||
srcDomain = desHostname;
|
||||
}
|
||||
if ( desHostname.slice(0 - srcDomain.length) !== srcDomain ) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -118,7 +118,7 @@ var getHostnameDict = function(hostnameToCountMap) {
|
|||
if ( r.hasOwnProperty(hostname) ) {
|
||||
continue;
|
||||
}
|
||||
domain = domainFromHostname(hostname);
|
||||
domain = domainFromHostname(hostname) || hostname;
|
||||
counts = hostnameToCountMap[domain] || 0;
|
||||
r[domain] = {
|
||||
domain: domain,
|
||||
|
|
Loading…
Reference in a new issue