0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-23 02:25:11 +00:00

[googledrive] Make thumbnail optional (Closes #8629)

This commit is contained in:
Sergey M․ 2016-02-22 03:13:18 +06:00
parent 1d00a8823e
commit d69abbd3f0

View file

@ -82,7 +82,7 @@ def _real_extract(self, url):
return {
'id': video_id,
'title': title,
'thumbnail': self._og_search_thumbnail(webpage),
'thumbnail': self._og_search_thumbnail(webpage, default=None),
'duration': duration,
'formats': formats,
}