From 3e084455a7b4829c3f71b8795f58bdc8f9f4e515 Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 7 Jan 2015 18:38:05 -0500 Subject: [PATCH] regression --- src/js/dynamic-net-filtering.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/js/dynamic-net-filtering.js b/src/js/dynamic-net-filtering.js index 78a36af09..aeb488b36 100644 --- a/src/js/dynamic-net-filtering.js +++ b/src/js/dynamic-net-filtering.js @@ -243,12 +243,6 @@ Matrix.prototype.evaluateCellZ = function(srcHostname, desHostname, type) { Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) { this.r = 0; - - if ( supportedTypes.hasOwnProperty(type) === false ) { - this.type = ''; - return this; - } - this.type = '*'; // Specific-destination + any type @@ -267,6 +261,11 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) { } // Any destination + specific-type + if ( supportedTypes.hasOwnProperty(type) === false ) { + this.type = ''; + return this; + } + this.y = '*'; if ( type === 'script' ) {