diff --git a/contrib/webconsole/torrent_client.html b/contrib/webconsole/torrent_client.html index d3792fc9..7c178638 100644 --- a/contrib/webconsole/torrent_client.html +++ b/contrib/webconsole/torrent_client.html @@ -162,6 +162,7 @@ Status Progress Download Rate + Upload Rate Actions @@ -205,6 +206,9 @@ torrents.forEach((el) => { const percent = Math.round(el.percentDone); const speed = window.tjs.formatBytes(el.rateDownload); + const speed_upload = window.tjs.formatBytes(el.rateUpload); + console.log(`speed ${el.rateDownload}/${el.rateUpload}`); + console.log(el) const statusText = window.tjs.getStatusString(el.status); const name = el.name || 'UNNAMED_METADATA'; @@ -222,6 +226,7 @@ ${speed} + ${speed_upload}