Merge pull request #605 from barri/patch-1

dynamic-net-filtering.js length typos
This commit is contained in:
Raymond Hill 2015-01-26 07:46:44 -05:00
commit 5d4aef0c4a

View file

@ -209,7 +209,7 @@ var is3rdParty = function(srcHostname, desHostname) {
return true;
}
// Do not confuse 'example.com' with 'anotherexample.com'
return desHostname.lenght !== srcDomain.lenght &&
return desHostname.length !== srcDomain.length &&
desHostname.charAt(desHostname.length - srcDomain.length - 1) !== '.';
};