Changeset 1063
- Timestamp:
- 2008-09-08 07:41:23 (2 months ago)
- Files:
-
- trunk/chrome/content/dta/manager.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/chrome/content/dta/manager.js
r1048 r1063 1300 1300 return _('offline'); 1301 1301 } 1302 return this._status + (this. _autoRetryTime? ' *' : '');1302 return this._status + (this.autoRetrying ? ' *' : ''); 1303 1303 }, 1304 1304 set status(nv) { … … 1685 1685 }, 1686 1686 autoRetry: function QI_autoRetry() { 1687 if (!this. _autoRetryTime|| Utils.getTimestamp() - (Prefs.autoRetryInterval * 1000) < this._autoRetryTime) {1687 if (!this.autoRetrying || Utils.getTimestamp() - (Prefs.autoRetryInterval * 1000) < this._autoRetryTime) { 1688 1688 return; 1689 1689 }
