From 2893a99e5fb71eaf8dc276dd1e8f746d50f66540 Mon Sep 17 00:00:00 2001 From: wipedlifepotato <60944239+wipedlifepotato@users.noreply.github.com> Date: Mon, 24 Aug 2026 16:53:04 +0300 Subject: [PATCH] torrent-client.js add rateUpload --- contrib/webconsole/torrent_client.html | 5 +++++ 1 file changed, 5 insertions(+) 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}