diff options
| -rw-r--r-- | youtube_dl/extractor/twitch.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index c926c99a9..fefcd2807 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -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'], | 
