From 0d92dd7e5b1942d2a722a92c23aae39ca51cf381 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 14 May 2015 13:28:58 -0400 Subject: [PATCH] default to block if no rule at all --- src/js/matrix.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/matrix.js b/src/js/matrix.js index 3d66cc0..56673a0 100644 --- a/src/js/matrix.js +++ b/src/js/matrix.js @@ -206,7 +206,7 @@ var extractFirstPartyDesDomain = function(srcHostname, desHostname) { Matrix.prototype.reset = function() { this.switches = {}; this.rules = {}; - this.rootValue = Matrix.GreenIndirect; + this.rootValue = Matrix.RedIndirect; this.modifiedTime = 0; };