diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-30 20:10:09 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-30 20:10:09 +0600 |
commit | 59ee8a86471af488c2ee16dcacf7a913636f0150 (patch) | |
tree | ae3611a7e6622af1928703dfdc666b5c1d624c4f | |
parent | af284305d58a9915a8ef00d056484b3a59548dda (diff) |
[facebook] Make alternative title optional (Closes #7700)
-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 fd854411b..321eec59e 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -164,7 +164,7 @@ class FacebookIE(InfoExtractor): if not video_title: video_title = self._html_search_regex( r'(?s)<span class="fbPhotosPhotoCaption".*?id="fbPhotoPageCaption"><span class="hasCaption">(.*?)</span>', - webpage, 'alternative title', fatal=False) + webpage, 'alternative title', default=None) video_title = limit_length(video_title, 80) if not video_title: video_title = 'Facebook video #%s' % video_id |