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.
2 parents 8526863 + e9c839f commit bc2e0d3Copy full SHA for bc2e0d3
common/content/commandline.js
@@ -1094,10 +1094,9 @@ const CommandLine = Module("commandline", {
1094
if (liberator.has("sanitizer") && (timespan || options["sanitizetimespan"]))
1095
range = sanitizer.getClearRange(timespan || options["sanitizetimespan"]);
1096
1097
- const self = this;
1098
this.store.mutate("filter", function (item) {
1099
let timestamp = (item.timestamp || Date.now()/1000) * 1000;
1100
- return !line.privateData || timestamp < self.range[0] || timestamp > self.range[1];
+ return !item.privateData || timestamp < range[0] || timestamp > range[1];
1101
});
1102
},
1103
/**
0 commit comments