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 )