fix missing attr for progress

This commit is contained in:
dave 2019-08-25 16:53:18 -07:00
parent 3932d5745b
commit 293e083faf
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ class ClientCache(object):
for cid, client in self.clients.items(): # TODO parallelize
self.data.torrents[cid] = client.rpc.core.get_torrents_status({"label": self.options["label"]},
['name', 'label', 'save_path', 'is_seed',
'is_finished', 'progress', 'files'])
'is_finished', 'progress', 'files',
'paused', 'peers', 'eta'])
newkeys = self.data.torrents[cid].keys()
for key in list(self.data.moves[cid].keys()):
if key not in newkeys: