mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:17:07 -05:00 
			
		
		
		
	[extractor/generic] Add proper default to _search_json_ld call
This commit is contained in:
		@@ -2241,8 +2241,8 @@ class GenericIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        # Looking for http://schema.org/VideoObject
 | 
			
		||||
        json_ld = self._search_json_ld(
 | 
			
		||||
            webpage, video_id, default=None, expected_type='VideoObject')
 | 
			
		||||
        if json_ld and json_ld.get('url'):
 | 
			
		||||
            webpage, video_id, default={}, expected_type='VideoObject')
 | 
			
		||||
        if json_ld.get('url'):
 | 
			
		||||
            info_dict.update({
 | 
			
		||||
                'title': video_title or info_dict['title'],
 | 
			
		||||
                'description': video_description,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user