Skip to content

Commit

Permalink
[imgur] fix extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
soimort committed Mar 4, 2024
1 parent 393597e commit 6d57771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/you_get/extractors/imgur.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def prepare(self, **kwargs):
content = get_content(self.url)
url = match1(content, r'meta property="og:video"[^>]+(https?://i.imgur.com/[^"?]+)') or \
match1(content, r'meta property="og:image"[^>]+(https?://i.imgur.com/[^"?]+)')
_, container, size = url_info(url)
_, container, size = url_info(url, faker=True)
self.streams = {
'original': {
'src': [url],
Expand Down

0 comments on commit 6d57771

Please sign in to comment.