[comcarcoff] Add support for singleshots (Closes #6366)

pull/8/head
Sergey M․ 2015-07-26 09:51:54 +06:00
rodzic 7a89681722
commit 5bdec59de1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -36,7 +36,7 @@ class ComCarCoffIE(InfoExtractor):
webpage, 'full data json'))
video_id = full_data['activeVideo']['video']
video_data = full_data['videos'][video_id]
video_data = full_data.get('videos', {}).get(video_id) or full_data['singleshots'][video_id]
thumbnails = [{
'url': video_data['images']['thumb'],
}, {