From: Malcolm Jarvis Date: Wed, 3 Sep 2008 03:58:18 +0000 (+0000) Subject: #1252 - Extranious semi-colon X-Git-Tag: 1.40~366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad04ad0d3d3cad0fc4be58fb029f29d7645c4980;p=transmission #1252 - Extranious semi-colon --- diff --git a/web/javascript/torrent.js b/web/javascript/torrent.js index 95d91f5d2..466535759 100644 --- a/web/javascript/torrent.js +++ b/web/javascript/torrent.js @@ -379,7 +379,7 @@ Torrent.prototype = // Create the 'progress details' label // Eg: '698.05 MB, uploaded 8.59 GB (Ratio: 12.3)' progress_details = Math.formatBytes( this._size ) - + ', uploaded '; + + ', uploaded ' + Math.formatBytes( this._upload_total ) + ' (Ratio ' + Math.ratio( this._upload_total, this._download_total )