Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Don't sort on retry
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Dec 6, 2023
1 parent 39b9915 commit 54a64c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.58"
__version__ = "5.0.59"
2 changes: 1 addition & 1 deletion cyberdrop_dl/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async def director(manager: Manager) -> None:
clear_screen_proc = await asyncio.create_subprocess_shell('cls' if os.name == 'nt' else 'clear')
await clear_screen_proc.wait()

if manager.config_manager.settings_data['Sorting']['sort_downloads']:
if manager.config_manager.settings_data['Sorting']['sort_downloads'] and not manager.args_manager.retry:
sorter = Sorter(manager)
await sorter.sort()
await check_partials_and_empty_folders(manager)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.0.58"
version = "5.0.59"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 54a64c4

Please sign in to comment.