1
0
mirror of https://github.com/blackjack4494/yt-dlc synced 2025-04-11 22:57:25 +02:00

[googledrive] Make thumbnail optional (Closes )

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

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