diff options
Diffstat (limited to 'youtube_dl/extractor/facebook.py')
| -rw-r--r-- | youtube_dl/extractor/facebook.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index 789dd79d5..a3dcdca3e 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -428,7 +428,7 @@ class FacebookIE(InfoExtractor):          timestamp = int_or_none(self._search_regex(              r'<abbr[^>]+data-utime=["\'](\d+)', webpage,              'timestamp', default=None)) -        thumbnail = self._og_search_thumbnail(webpage) +        thumbnail = self._html_search_meta(['og:image', 'twitter:image'], webpage)          view_count = parse_count(self._search_regex(              r'\bviewCount\s*:\s*["\']([\d,.]+)', webpage, 'view count',  | 
