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

Commit

Permalink
Fix cyberfile missing last page in scraping
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Mar 25, 2024
1 parent 4c37508 commit 05d6efd
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.2.9"
__version__ = "5.2.11"
2 changes: 1 addition & 1 deletion cyberdrop_dl/scraper/crawlers/cyberfile_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async def folder(self, scrape_item: ScrapeItem) -> None:
self.manager.task_group.create_task(self.run(new_scrape_item))

page += 1
if page >= num_pages:
if page > num_pages:
break

@error_handling_wrapper
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.2.9"
version = "5.2.11"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 05d6efd

Please sign in to comment.