mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +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
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue