From 6cff13febab81c1b414a0cf972306a0d363b1d70 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Fri, 26 Aug 2011 19:59:26 +0000 Subject: [PATCH] fix r12756 oops --- web/javascript/transmission.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/javascript/transmission.js b/web/javascript/transmission.js index c2b2a958d..1fd319655 100644 --- a/web/javascript/transmission.js +++ b/web/javascript/transmission.js @@ -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; -- 2.40.0