We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2891400 commit 042495dCopy full SHA for 042495d
tidal_dl_ng/download.py
@@ -275,7 +275,7 @@ def list(
275
for media in items:
276
Progress()
277
# TODO: Handle return value of `track` method.
278
- self.item(
+ status_download, result_path_file = self.item(
279
path_base=path_file,
280
file_template=file_name_relative,
281
media=media,
@@ -288,7 +288,7 @@ def list(
288
if not progress_stdout:
289
progress_gui.list_item.emit(progress.tasks[p_task1].percentage)
290
291
- if download_delay:
+ if download_delay and status_download:
292
time_sleep: float = round(random.SystemRandom().uniform(2, 5), 1)
293
294
# TODO: Fix logging. Is not displayed in debug window.
0 commit comments