fix #649 Progress icon doesn't appear when downloading a failed or paused episode

thanks to @auouymous for the fix
This commit is contained in:
Eric Le Lay 2019-08-11 11:57:44 +02:00
parent 03819e4abf
commit a7385c95b5
1 changed files with 6 additions and 0 deletions

View File

@ -739,6 +739,12 @@ class DownloadTask(object):
self.status = DownloadTask.DOWNLOADING
self._notification_shown = False
# Restore a reference to this task in the episode
# when running a recycled task following a pause or failed
# see #649
if not self.episode.download_task:
self.episode.download_task = self
try:
# Resolve URL and start downloading the episode
fmt_ids = youtube.get_fmt_ids(self._config.youtube)