mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #1338 Seeds and Peers totals not updating
This commit is contained in:
parent
0f625943c0
commit
b7fd2d1bf1
1 changed files with 2 additions and 2 deletions
|
@ -691,8 +691,8 @@ class Torrent(object):
|
|||
"total_done": self.status.total_done,
|
||||
"total_payload_download": self.status.total_payload_download,
|
||||
"total_payload_upload": self.status.total_payload_upload,
|
||||
"total_peers": self.status.num_incomplete,
|
||||
"total_seeds": self.status.num_complete,
|
||||
"total_peers": self.status.list_peers - self.status.list_seeds,
|
||||
"total_seeds": self.status.list_seeds,
|
||||
"total_uploaded": self.status.all_time_upload,
|
||||
"total_wanted": self.status.total_wanted,
|
||||
"tracker": self.status.current_tracker,
|
||||
|
|
Loading…
Add table
Reference in a new issue