We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0698792 commit 441c57eCopy full SHA for 441c57e
common/content/sanitizer.js
@@ -43,7 +43,7 @@ const Sanitizer = Module("sanitizer", {
43
for (let itemName in this.items) {
44
let item = this.items[itemName];
45
46
- if ("clear" in item && item.canClear && prefSet(itemName)) {
+ if ("clear" in item && prefSet(itemName)) {
47
liberator.echomsg("Sanitizing " + itemName + " items...");
48
// Some of these clear() may raise exceptions (see bug #265028)
49
// to sanitize as much as possible, we catch and store them,
@@ -176,7 +176,6 @@ const Sanitizer = Module("sanitizer", {
176
options.setPref(pref, false);
177
178
self.items[item.name] = {
179
- canClear: true,
180
clear: item.action
181
};
182
});
0 commit comments