From 610c14d26f67b9a8037baec12db96c6b77b0c0f4 Mon Sep 17 00:00:00 2001 From: Jules-WinnfieldX Date: Tue, 26 Mar 2024 10:02:17 -0600 Subject: [PATCH] Fix image scraping in SMG --- cyberdrop_dl/__init__.py | 2 +- cyberdrop_dl/scraper/crawlers/socialmediagirls_crawler.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cyberdrop_dl/__init__.py b/cyberdrop_dl/__init__.py index ad9e2745c..8823e040b 100644 --- a/cyberdrop_dl/__init__.py +++ b/cyberdrop_dl/__init__.py @@ -1 +1 @@ -__version__ = "5.2.11" \ No newline at end of file +__version__ = "5.2.12" \ No newline at end of file diff --git a/cyberdrop_dl/scraper/crawlers/socialmediagirls_crawler.py b/cyberdrop_dl/scraper/crawlers/socialmediagirls_crawler.py index 9d7d1c3d5..c9e2a71aa 100644 --- a/cyberdrop_dl/scraper/crawlers/socialmediagirls_crawler.py +++ b/cyberdrop_dl/scraper/crawlers/socialmediagirls_crawler.py @@ -37,7 +37,7 @@ def __init__(self, manager: Manager): self.links_attribute = "href" self.attachment_url_part = "attachments" self.images_selector = "img[class*=bbImage]" - self.images_attribute = "data-src" + self.images_attribute = "src" self.videos_selector = "video source" self.iframe_selector = "iframe[class=saint-iframe]" self.videos_attribute = "src" diff --git a/pyproject.toml b/pyproject.toml index 7f52ffc6d..83c7c1e8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cyberdrop-dl" -version = "5.2.11" +version = "5.2.12" description = "Bulk downloader for multiple file hosts" authors = ["Jules Winnfield "] readme = "README.md"