From 42937eb1b1135f744623803fc1c2f87f3fdd5bcd Mon Sep 17 00:00:00 2001 From: gorhill Date: Mon, 12 Jan 2015 10:10:03 -0500 Subject: [PATCH] this fixes #482 --- src/js/pagestore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/pagestore.js b/src/js/pagestore.js index e31b25e7f..ad87ec47d 100644 --- a/src/js/pagestore.js +++ b/src/js/pagestore.js @@ -604,7 +604,7 @@ PageStore.prototype.getNetFilteringSwitch = function() { /******************************************************************************/ PageStore.prototype.getCosmeticFilteringSwitch = function() { - return this.getNetFilteringSwitch() === false || + return this.getNetFilteringSwitch() !== false && this.skipCosmeticFiltering === false; };