Fixed removeFinishedDownloads
This commit is contained in:
parent
cae72c51fd
commit
b2b7c450d4
|
@ -492,7 +492,7 @@ class QueueManager:
|
||||||
|
|
||||||
def removeFinishedDownloads(self, interface=None):
|
def removeFinishedDownloads(self, interface=None):
|
||||||
for uuid in self.queueComplete:
|
for uuid in self.queueComplete:
|
||||||
del self.queueList[self.uuid]
|
del self.queueList[uuid]
|
||||||
self.queueComplete = []
|
self.queueComplete = []
|
||||||
if interface:
|
if interface:
|
||||||
interface.send("removedFinishedDownloads")
|
interface.send("removedFinishedDownloads")
|
||||||
|
|
Loading…
Reference in New Issue