[facebook] Make alternative title optional (Closes #7700)

merge-requests/5/head
Sergey M․ 2015-11-30 20:10:09 +06:00
parent af284305d5
commit 59ee8a8647
1 changed files with 1 additions and 1 deletions

View File

@ -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