summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-18 06:18:03 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-18 06:18:03 +0600
commit1793d71db61acc9f6cceefbc63d7de2b558b7582 (patch)
treec1297ef49cafceb819c6c5ffa7073b0adb78d27d
parent4211e1941b39cb153505c64ab8fcb31a762674d1 (diff)
downloadyoutube-dl-1793d71db61acc9f6cceefbc63d7de2b558b7582.tar.gz
youtube-dl-1793d71db61acc9f6cceefbc63d7de2b558b7582.tar.xz
youtube-dl-1793d71db61acc9f6cceefbc63d7de2b558b7582.zip
[twitch:stream] Fix channel_id in different case (Closes #6263)
-rw-r--r--youtube_dl/extractor/twitch.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index 92b6dc1b8..ab557a1a5 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -346,6 +346,8 @@ class TwitchStreamIE(TwitchBaseIE):
                 'http://www.twitch.tv/%s/profile' % channel_id,
                 'TwitchProfile', channel_id)
 
+        channel_id = stream.get('channel', {}).get('name') or channel_id.lower()
+
         access_token = self._download_json(
             '%s/api/channels/%s/access_token' % (self._API_BASE, channel_id), channel_id,
             'Downloading channel access token')