Skip to content

Commit

Permalink
Fix imagefap extrcator
Browse files Browse the repository at this point in the history
  • Loading branch information
qwer11111 committed Mar 15, 2024
1 parent e76d575 commit f940a59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file added gallery_dl/extractor/.imagefap.py.swp
Binary file not shown.
4 changes: 3 additions & 1 deletion gallery_dl/extractor/imagefap.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ def galleries(self, folder_id):
while True:
gid = extr('<a href="/gallery/', '"')
if not gid:
break
gid = extr('<a class=\'blk_galleries\' href="/gallery/', '"')
if not gid:
break
yield gid, extr("<b>", "<"), folder_name
cnt += 1

Expand Down

0 comments on commit f940a59

Please sign in to comment.