aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-08-25 08:46:54 +0100
committerRemita Amine <remitamine@gmail.com>2016-08-25 08:49:44 +0100
commit75fa990dc669563b51f22eeddd2f33acc41c8599 (patch)
tree0fceab12f3d65c63bbbb65aaa89ecf9133f1cc2b /youtube_dl/YoutubeDL.py
parentf39ffc5877e4e9f112fa26ff21079f179b4aec46 (diff)
downloadyoutube-dl-75fa990dc669563b51f22eeddd2f33acc41c8599.tar.xz
[YoutubeDL] add fallback value for thumbnails values in thumbnails sorting
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 0b3e3da82..c499c1da4 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1256,8 +1256,8 @@ class YoutubeDL(object):
info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}]
if thumbnails:
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):
t['url'] = sanitize_url(t['url'])
if t.get('width') and t.get('height'):