mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
LP Bug #496265: Peers in PeersTab show non-zero download rate when seeding
This commit is contained in:
parent
a384cd70b3
commit
16cc8f6eea
1 changed files with 2 additions and 2 deletions
|
@ -541,11 +541,11 @@ class Torrent(object):
|
|||
ret.append({
|
||||
"client": client,
|
||||
"country": country,
|
||||
"down_speed": peer.down_speed,
|
||||
"down_speed": peer.payload_down_speed,
|
||||
"ip": "%s:%s" % (peer.ip[0], peer.ip[1]),
|
||||
"progress": peer.progress,
|
||||
"seed": peer.flags & peer.seed,
|
||||
"up_speed": peer.up_speed,
|
||||
"up_speed": peer.payload_up_speed,
|
||||
})
|
||||
|
||||
return ret
|
||||
|
|
Loading…
Add table
Reference in a new issue