From b096266e75d349c6a1bb2c32c8262bda0bd562b5 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 8 Jan 2009 21:07:14 -0500 Subject: [PATCH] More tab-completion fixes --- common/modules/storage.jsm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/modules/storage.jsm b/common/modules/storage.jsm index c2f8705f..9f13228f 100644 --- a/common/modules/storage.jsm +++ b/common/modules/storage.jsm @@ -80,10 +80,10 @@ function Timer(minInterval, maxInterval, callback) { timer.cancel(); this.doneAt = 0; - } + }; this.flush = function () { - if (this.latest) + if (this.doneAt == -1) this.notify(); }; }