mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 00:27:07 -05:00 
			
		
		
		
	[YoutubeDL] check only for None Value in thumbnails sorting
This commit is contained in:
		@@ -1256,8 +1256,10 @@ class YoutubeDL(object):
 | 
			
		||||
                info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}]
 | 
			
		||||
        if thumbnails:
 | 
			
		||||
            thumbnails.sort(key=lambda t: (
 | 
			
		||||
                t.get('preference') or -1, t.get('width') or -1, t.get('height') or -1,
 | 
			
		||||
                t.get('id') or '', t.get('url')))
 | 
			
		||||
                t.get('preference') if t.get('preference') is not None else -1,
 | 
			
		||||
                t.get('width') if t.get('width') is not None else -1,
 | 
			
		||||
                t.get('height') if t.get('height') is not None else -1,
 | 
			
		||||
                t.get('id') if t.get('id') is not None else '', t.get('url')))
 | 
			
		||||
            for i, t in enumerate(thumbnails):
 | 
			
		||||
                t['url'] = sanitize_url(t['url'])
 | 
			
		||||
                if t.get('width') and t.get('height'):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user