1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

fix r12756 oops

This commit is contained in:
Jordan Lee 2011-08-26 19:59:26 +00:00
parent a1094bafe4
commit 6cff13feba

View file

@ -1081,7 +1081,7 @@ Transmission.prototype =
// schedule the next request
clearTimeout(this.refreshTorrentsTimeout);
this.refreshTorrentsTimeout = setTimeout(tr.refreshTorrents, tr[Prefs._RefreshRate]*1000);
this.refreshTorrentsTimeout = setTimeout(function(){tr.refreshTorrents();}, tr[Prefs._RefreshRate]*1000);
},
initializeAllTorrents: function() {
var tr = this;