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; };