From d2b45c5442aeb0e02f251916ae1beb06830ef4c1 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Tue, 12 Mar 2013 18:15:36 +0100 Subject: render download progress --- module/api/CoreApi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'module/api') diff --git a/module/api/CoreApi.py b/module/api/CoreApi.py index a86197813..d75fe6ad6 100644 --- a/module/api/CoreApi.py +++ b/module/api/CoreApi.py @@ -39,8 +39,8 @@ class CoreApi(ApiComponent): self.core.threadManager.pause, self.core.config['reconnect']['activated'] and self.isTimeReconnect()) - # TODO multi user - for pyfile in self.core.threadManager.getActiveDownloads(): + + for pyfile in self.core.threadManager.getActiveDownloads(self.primaryUID): serverStatus.speed += pyfile.getSpeed() #bytes/s return serverStatus @@ -51,7 +51,7 @@ class CoreApi(ApiComponent): :rtype: list of :class:`ProgressInfo` """ - pass + return self.core.threadManager.getProgressList(self.primaryUID) def pauseServer(self): """Pause server: It won't start any new downloads, but nothing gets aborted.""" -- cgit v1.2.3