Skip to content

Commit

Permalink
Fix: fullimg
Browse files Browse the repository at this point in the history
  • Loading branch information
eight04 committed Nov 19, 2024
1 parent 952da9f commit 675f456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comiccrawler/mods/exh.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_images(html, url):
filename = url_extract_filename(image)

if get_boolean(config["original"]):
match = re.search(r'href="([^"]+?/fullimg\.php[^"]+)', html)
match = re.search(r'href="([^"]+?/fullimg[^"]+)', html)
if match:
image = unescape(match.group(1))

Expand Down

0 comments on commit 675f456

Please sign in to comment.