Skip to content

Commit

Permalink
Merge pull request #2351 from zGadli/img-fix
Browse files Browse the repository at this point in the history
Fix image fetching
  • Loading branch information
dipu-bd committed Apr 30, 2024
2 parents 479e376 + 161697d commit d186494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/en/c/chrysanthemumgarden.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def read_novel_info(self):

possible_image = soup.select_one(".novel-cover img")
if possible_image:
self.novel_cover = self.absolute_url(possible_image["src"])
self.novel_cover = self.absolute_url(possible_image["data-breeze"])
logger.info("Novel cover: %s", self.novel_cover)

volumes = set([])
Expand Down

0 comments on commit d186494

Please sign in to comment.