Changeset 948

Show
Ignore:
Timestamp:
2008-04-22 19:26:53 (7 months ago)
Author:
MaierMan
Message:

fix bug causing all host to be limited to one

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/serverswitcher/chrome/content/manager.js

    r811 r948  
    190190        }, 
    191191        get available() { 
    192                 return (this.limit == 0 || this.limit < this.n) && this.downloads.length != 0; 
     192                return (this.limit == 0 || this.n < this.limit) && this.downloads.length != 0; 
    193193        }, 
    194194        inc: function() {