diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-12-21 07:38:55 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-12-21 07:38:55 +0600 |
commit | 2c2a42587b1755624a75a4b748c59a24f8b146aa (patch) | |
tree | 4604ec59093f0a37f898aedebdc36ffa6925dcaf /youtube_dl/extractor/dvtv.py | |
parent | e2f65efcf9c3f39acba66a4238529e4a09db1822 (diff) |
[dvtv] Fix thumbnail scheme
Diffstat (limited to 'youtube_dl/extractor/dvtv.py')
-rw-r--r-- | youtube_dl/extractor/dvtv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dvtv.py b/youtube_dl/extractor/dvtv.py index 5f8ac3e46..c1a4bc757 100644 --- a/youtube_dl/extractor/dvtv.py +++ b/youtube_dl/extractor/dvtv.py @@ -92,7 +92,7 @@ class DVTVIE(InfoExtractor): return { 'id': metadata['mediaid'], 'title': unescapeHTML(metadata['title']), - 'thumbnail': self._proto_relative_url(metadata['image']), + 'thumbnail': self._proto_relative_url(metadata['image'], 'http:'), 'formats': formats } |