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

Commit

Permalink
Update for nudostar attached images (was pulling thumb link instead o…
Browse files Browse the repository at this point in the history
…f full link).
  • Loading branch information
Jules-WinnfieldX committed Nov 2, 2023
1 parent 65e7bff commit b6237f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.2.217"
__version__ = "4.2.218"
6 changes: 5 additions & 1 deletion cyberdrop_dl/crawlers/Xenforo_Spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,13 @@ async def get_links(self, post_content: bs4.Tag, selector: str, attribute: str,
if parent_simp:
if "init" in parent_simp:
continue
nudo_thumb_check = link_tag.parent.get("href")
if nudo_thumb_check:
if "nudostar" in nudo_thumb_check:
continue

test_for_img = link_tag.select_one("img")
if test_for_img:
if test_for_img and "nudostar.com" not in link:
continue
if not link:
continue
Expand Down

0 comments on commit b6237f1

Please sign in to comment.