1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 13:16:53 +00:00

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);
}
},