From a3955281516ca1973f4b9d907a5a62da56534ec0 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 24 Jun 2009 14:13:11 +0000 Subject: [PATCH] (trunk web) fix r8742 oops --- web/javascript/torrent.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/javascript/torrent.js b/web/javascript/torrent.js index 9147347c2..7b8a610b9 100644 --- a/web/javascript/torrent.js +++ b/web/javascript/torrent.js @@ -400,9 +400,9 @@ Torrent.prototype = { eta = ' - '; if (this._eta < 0 || this._eta >= Torrent._InfiniteTimeRemaining ) - eta = 'remaining time unknown'; + eta += 'remaining time unknown'; else - eta = Math.formatSeconds(this._eta) + ' remaining'; + eta += Math.formatSeconds(this._eta) + ' remaining'; } // Create the 'progress details' label