From 6e53c91608d1c43a9fe1614f13a15db74e877a91 Mon Sep 17 00:00:00 2001 From: felix Date: Mon, 6 Apr 2015 10:12:43 +0200 Subject: [PATCH] [crooksandliars] resolve protocol-relative URLs --- youtube_dl/extractor/crooksandliars.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/crooksandliars.py b/youtube_dl/extractor/crooksandliars.py index afccca354..cee0603f4 100644 --- a/youtube_dl/extractor/crooksandliars.py +++ b/youtube_dl/extractor/crooksandliars.py @@ -18,7 +18,7 @@ class CrooksAndLiarsIE(InfoExtractor): 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!", 'description': "Fox News, Fox & Friends Weekend, April 4, 2015. Read more... http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists", 'timestamp': 1428207000, - 'thumbnail': '//crooksandliars.com/files/mediaposters/2015/04/31235.jpg?ts=1428207050', + 'thumbnail': 'https://crooksandliars.com/files/mediaposters/2015/04/31235.jpg?ts=1428207050', 'uploader': "Heather", } }] @@ -46,7 +46,7 @@ class CrooksAndLiarsIE(InfoExtractor): 'uploader': manifest['author'], 'title': manifest['title'], 'description': manifest['description'], - 'thumbnail': manifest['poster'], + 'thumbnail': self._proto_relative_url(manifest['poster']), 'duration': manifest['duration'], 'timestamp': int(manifest['created']), 'formats': formats, -- 2.30.2