This commit is contained in:
gorhill 2015-01-12 10:10:03 -05:00
parent b8cd524167
commit 42937eb1b1
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ PageStore.prototype.getNetFilteringSwitch = function() {
/******************************************************************************/
PageStore.prototype.getCosmeticFilteringSwitch = function() {
return this.getNetFilteringSwitch() === false ||
return this.getNetFilteringSwitch() !== false &&
this.skipCosmeticFiltering === false;
};