[twitch:clips] Fix title extraction

pull/8/head
J.D. Purcell 2017-10-23 12:12:50 -04:00 zatwierdzone przez Sergey M
rodzic 55c727a547
commit cdd1ce92c4
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -609,7 +609,7 @@ class TwitchClipsIE(InfoExtractor):
r'(?s)clipInfo\s*=\s*({.+?});', webpage, 'clip info'),
video_id, transform_source=js_to_json)
title = clip.get('channel_title') or self._og_search_title(webpage)
title = clip.get('title') or clip.get('channel_title') or self._og_search_title(webpage)
formats = [{
'url': option['source'],