Browse Source

[YoutubeDL] add fallback value for thumbnails values in thumbnails sorting

Remita Amine 9 years ago
parent
commit
75fa990dc6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/YoutubeDL.py

+ 2 - 2
youtube_dl/YoutubeDL.py

@@ -1256,8 +1256,8 @@ class YoutubeDL(object):
                 info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}]
                 info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}]
         if thumbnails:
         if thumbnails:
             thumbnails.sort(key=lambda t: (
             thumbnails.sort(key=lambda t: (
-                t.get('preference'), t.get('width'), t.get('height'),
-                t.get('id'), t.get('url')))
+                t.get('preference') or -1, t.get('width') or -1, t.get('height') or -1,
+                t.get('id') or '', t.get('url')))
             for i, t in enumerate(thumbnails):
             for i, t in enumerate(thumbnails):
                 t['url'] = sanitize_url(t['url'])
                 t['url'] = sanitize_url(t['url'])
                 if t.get('width') and t.get('height'):
                 if t.get('width') and t.get('height'):