mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 05:37:07 -05:00 
			
		
		
		
	[kaltura] Improve uploader_id extraction
This commit is contained in:
		@@ -319,6 +319,6 @@ class KalturaIE(InfoExtractor):
 | 
			
		||||
            'thumbnail': info.get('thumbnailUrl'),
 | 
			
		||||
            'duration': info.get('duration'),
 | 
			
		||||
            'timestamp': info.get('createdAt'),
 | 
			
		||||
            'uploader_id': info.get('userId'),
 | 
			
		||||
            'uploader_id': info.get('userId') if info.get('userId') != 'None' else None,
 | 
			
		||||
            'view_count': info.get('plays'),
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user