[imgur] fix extraction of original image

This commit is contained in:
Mort Yao 2021-12-16 16:35:58 +01:00
parent 5a12118c83
commit 884b56e5fa
No known key found for this signature in database
GPG Key ID: 07DA00CB78203251

View File

@ -52,7 +52,7 @@ class Imgur(VideoExtractor):
else: else:
# gallery image # gallery image
content = get_content(self.url) content = get_content(self.url)
url = match1(content, r'(https?://i.imgur.com/[^"]+)') url = match1(content, r'meta property="og:image"[^>]+(https?://i.imgur.com/[^"?]+)')
_, container, size = url_info(url) _, container, size = url_info(url)
self.streams = { self.streams = {
'original': { 'original': {