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

Commit

Permalink
Fix fapello
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Dec 4, 2023
1 parent 416809b commit 7ff79de
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.8"
__version__ = "5.0.9"
2 changes: 1 addition & 1 deletion cyberdrop_dl/scraper/crawlers/fapello_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async def fetch(self, scrape_item: ScrapeItem) -> None:
task_id = await self.scraping_progress.add_task(scrape_item.url)

if not str(scrape_item.url).endswith("/"):
scrape_item.url = scrape_item.url / ""
scrape_item.url = URL(str(scrape_item.url) + "/")

if scrape_item.url.parts[-2].isnumeric():
await self.post(scrape_item)
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.8"
version = "5.0.9"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 7ff79de

Please sign in to comment.