now that refiltering is faster, shrink the delay between torrent updates and refiltering

This commit is contained in:
Jordan Lee
2011-08-30 05:49:23 +00:00
parent e940ab815f
commit af1d2b76c0

View File

@@ -1924,7 +1924,7 @@ Transmission.prototype =
if (!this.refilterTimer)
{
var tr = this;
this.refilterTimer = setTimeout(function() {tr.refilter();}, 500);
this.refilterTimer = setTimeout(function() {tr.refilter();}, 100);
}
},