mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
fix r12756 oops
This commit is contained in:
parent
a1094bafe4
commit
6cff13feba
1 changed files with 1 additions and 1 deletions
|
@ -1081,7 +1081,7 @@ Transmission.prototype =
|
||||||
|
|
||||||
// schedule the next request
|
// schedule the next request
|
||||||
clearTimeout(this.refreshTorrentsTimeout);
|
clearTimeout(this.refreshTorrentsTimeout);
|
||||||
this.refreshTorrentsTimeout = setTimeout(tr.refreshTorrents, tr[Prefs._RefreshRate]*1000);
|
this.refreshTorrentsTimeout = setTimeout(function(){tr.refreshTorrents();}, tr[Prefs._RefreshRate]*1000);
|
||||||
},
|
},
|
||||||
initializeAllTorrents: function() {
|
initializeAllTorrents: function() {
|
||||||
var tr = this;
|
var tr = this;
|
||||||
|
|
Loading…
Reference in a new issue