mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 03:24:54 +00:00
Fix #1960 : Web UI statusbar shows total_payload_download for upload
This commit is contained in:
parent
f0c4a4c766
commit
714b7f3c55
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ Deluge.details.StatusTab = Ext.extend(Ext.Panel, {
|
|||
data.auto_managed = _((status.is_auto_managed) ? 'True' : 'False');
|
||||
|
||||
data.downloaded += ' (' + ((status.total_payload_download) ? fsize(status.total_payload_download) : '0.0 KiB') + ')';
|
||||
data.uploaded += ' (' + ((status.total_payload_download) ? fsize(status.total_payload_download): '0.0 KiB') + ')';
|
||||
data.uploaded += ' (' + ((status.total_payload_upload) ? fsize(status.total_payload_upload): '0.0 KiB') + ')';
|
||||
|
||||
for (var field in this.fields) {
|
||||
this.fields[field].innerHTML = data[field];
|
||||
|
|
Loading…
Add table
Reference in a new issue