Skip to content

Commit

Permalink
[rule34us] fix extraction (#6289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Oct 7, 2024
1 parent 02ca1ac commit b64bede
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gallery_dl/extractor/rule34us.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ def _parse_post(self, post_id):
"score" : text.extract(extr('Score: ', '> - <'), ">", "<")[0],
"width" : extr('Size: ', 'w'),
"height" : extr(' x ', 'h'),
"" : extr('</script>', '</div></center>'),
"file_url": extr(' src="', '"'),
}
del post[""]

url = post["file_url"]
if "//video-cdn1." in url:
Expand Down

0 comments on commit b64bede

Please sign in to comment.