1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 11:04:11 +01:00

Fix sanitizer.

--HG--
branch : testing
This commit is contained in:
Kris Maglione
2010-05-14 14:37:56 -04:00
parent 847dc6428d
commit 34574f43bb
4 changed files with 17 additions and 2 deletions

View File

@@ -1034,7 +1034,7 @@ const CommandLine = Module("commandline", {
sanitize: function (timespan) {
let range = [0, Number.MAX_VALUE];
if (liberator.has("sanitizer") && (timespan || options["sanitizetimespan"]))
range = sanitizer.getClearRange(timespan || options["sanitizetimespan"]);
range = Sanitizer.getClearRange(timespan || options["sanitizetimespan"]);
const self = this;
this.store.mutate("filter", function (item) {