mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	[shahid] don't fail on missing info
This commit is contained in:
		
							parent
							
								
									84c0ed50a5
								
							
						
					
					
						commit
						3c07a729a6
					
				@ -35,9 +35,9 @@ class ShahidIE(InfoExtractor):
 | 
			
		||||
            video_id
 | 
			
		||||
        )
 | 
			
		||||
        title = json_data['name']
 | 
			
		||||
        thumbnail = json_data['image']
 | 
			
		||||
        categories = json_data['genre']
 | 
			
		||||
        description = json_data['description']
 | 
			
		||||
        thumbnail = json_data.get('image')
 | 
			
		||||
        categories = json_data.get('genre')
 | 
			
		||||
        description = json_data.get('description')
 | 
			
		||||
        player_json_data = self._download_json(
 | 
			
		||||
            'https://shahid.mbc.net/arContent/getPlayerContent-param-.id-'+video_id+'.type-player.html',
 | 
			
		||||
            video_id
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user