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

Commit

Permalink
Fix nudostar.tv
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Jun 23, 2024
1 parent e063ca6 commit 8c1014a
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.3.28"
__version__ = "5.3.29"
2 changes: 1 addition & 1 deletion cyberdrop_dl/scraper/crawlers/nudostartv_crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def profile(self, scrape_item: ScrapeItem) -> None:
async with self.request_limiter:
soup = await self.client.get_BS4(self.domain, scrape_item.url)

title = await self.create_title(soup.select_one('h1[class="entry-title"]').get_text().rsplit("page")[0], None, None)
title = await self.create_title(soup.select_one('title').get_text().split("/")[0], None, None)
content = soup.select('div[id=list_videos_common_videos_list_items] div a')
for page in content:
link = URL(page.get('href'))
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.3.28"
version = "5.3.29"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 8c1014a

Please sign in to comment.