commit: 2f962d0a91d22becd59489a9d879b1caafadefed
parent 3c63e1bb5740484dae483595a87325e8cf9c7e7b
Author: Sergey M․ <dstftw@gmail.com>
Date: Sun, 27 Sep 2015 01:17:44 +0600
[eagleplatform] Use http scheme for thumbnail
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/eagleplatform.py b/youtube_dl/extractor/eagleplatform.py
@@ -73,7 +73,7 @@ class EaglePlatformIE(InfoExtractor):
title = media['title']
description = media.get('description')
- thumbnail = self._proto_relative_url(media.get('snapshot'))
+ thumbnail = self._proto_relative_url(media.get('snapshot'), 'http:')
duration = int_or_none(media.get('duration'))
view_count = int_or_none(media.get('views'))