Changeset 1063

Show
Ignore:
Timestamp:
2008-09-08 07:41:23 (2 months ago)
Author:
MaierMan
Message:

use autoRetrying

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/chrome/content/dta/manager.js

    r1048 r1063  
    13001300                        return _('offline'); 
    13011301                } 
    1302                 return this._status + (this._autoRetryTime ? ' *' : ''); 
     1302                return this._status + (this.autoRetrying ? ' *' : ''); 
    13031303        }, 
    13041304        set status(nv) { 
     
    16851685        }, 
    16861686        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) { 
    16881688                        return; 
    16891689                }