mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
(trunk web) fix r8742 oops
This commit is contained in:
parent
368115f7df
commit
a395528151
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue