Changes between Initial Version and Version 1 of Ticket #1960


Ignore:
Timestamp:
10/30/2011 01:10:53 PM (12 years ago)
Author:
Cas
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1960

    • Property Owner set to damoxc
    • Property Component changed from other to webui
    • Property Milestone changed from Future to 1.3.4
  • Ticket #1960 – Description

    initial v1  
    11It seems there is a small data read-out bug in the web ui statusbar. The text will show for instance: 
    22 
     3{{{ 
    34Downloaded: 16.1 GiB (1.3 GiB) 
    45Uploaded: 15.7 GiB (1.3 GiB) 
     6}}} 
    57 
    68Download and upload amount in the parentheses (listing total for current session?) is always the same. Code suggests it is reporting total_payload_download for both variables: 
    79 
    810From deluge-1.3.3/deluge/ui/web/js/deluge-all/details/StatusTab.js: 
    9  
     11{{{ 
    1012data.downloaded += ' (' + ((status.total_payload_download) ? fsize(status.total_payload_download) : '0.0 KiB') + ')'; 
    1113data.uploaded += ' (' + ((status.total_payload_download) ? fsize(status.total_payload_download): '0.0 KiB') + ')'; 
    12  
     14}}} 
    1315Guessing it should use total_payload_upload for data.uploaded variable?