Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Apr 2, 2015
1 parent 8277daf commit 465c4b6
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/js/dynamic-net-filtering.js
Expand Up @@ -316,23 +316,17 @@ Matrix.prototype.clearRegisters = function() {
/******************************************************************************/

var is3rdParty = function(srcHostname, desHostname) {
if ( desHostname === '*' ) {
// If at least one is party-less, the relation can't be labelled
// "3rd-party"
if ( desHostname === '*' || srcHostname === '*' || srcHostname === '' ) {
return false;
}

// This case occurs for matrix rendering
if ( srcHostname === '*' ) {
return false;
}
var srcDomain = domainFromHostname(srcHostname);

// This can very well occurs, for examples:
// No domain can very well occurs, for examples:
// - localhost
// - file-scheme
// etc.
if ( srcDomain === '' ) {
srcDomain = srcHostname !== '' ? srcHostname : desHostname;
}
var srcDomain = domainFromHostname(srcHostname) || srcHostname;

if ( desHostname.slice(0 - srcDomain.length) !== srcDomain ) {
return true;
Expand Down

0 comments on commit 465c4b6

Please sign in to comment.