Fixed queue item not cancelling correctly

This commit is contained in:
RemixDev 2021-06-08 11:11:08 +02:00
parent 224a62aad2
commit 261b7adb36
No known key found for this signature in database
GPG Key ID: B33962B465BDB51C
1 changed files with 22 additions and 23 deletions

View File

@ -150,12 +150,7 @@ class Downloader:
self.playlistURLs = []
def start(self):
if self.downloadObject.isCanceled:
if self.listener:
self.listener.send('currentItemCancelled', self.downloadObject.uuid)
self.listener.send("removedFromQueue", self.downloadObject.uuid)
return
if not self.downloadObject.isCanceled:
if isinstance(self.downloadObject, Single):
track = self.downloadWrapper({
'trackAPI_gw': self.downloadObject.single['trackAPI_gw'],
@ -175,6 +170,10 @@ class Downloader:
self.afterDownloadCollection(tracks)
if self.listener:
if self.listener:
self.listener.send('currentItemCancelled', self.downloadObject.uuid)
self.listener.send("removedFromQueue", self.downloadObject.uuid)
else:
self.listener.send("finishDownload", self.downloadObject.uuid)
def download(self, extraData, track=None):