diff --git a/ChangeLog b/ChangeLog index f390de776..6ac9f8120 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Deluge 1.0.3 (In Development) + Core: + * Fix upnp - it should work on more routers now too + * Fix issue where Deluge would send improper stats to the tracker after a + pause/resume. + Deluge 1.0.2 (10 October 2008) Core: * Fix issue where torrents will not be properly added to the session diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index c6bae1b63..4a3116ab8 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -409,12 +409,12 @@ class Torrent: full_status = { "distributed_copies": distributed_copies, "total_done": self.status.total_done, - "total_uploaded": self.total_uploaded + self.status.total_payload_upload, + "total_uploaded": self.status.all_time_upload, "state": self.state, "paused": self.status.paused, "progress": progress, "next_announce": self.status.next_announce.seconds, - "total_payload_download": self.status.total_payload_download, + "total_payload_download": self.status.all_time_download, "total_payload_upload": self.status.total_payload_upload, "download_payload_rate": self.status.download_payload_rate, "upload_payload_rate": self.status.upload_payload_rate,