mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 10:27:07 -05:00 
			
		
		
		
	[facebook] Make alternative title optional (Closes #7700)
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user