summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-02-01 00:32:25 +0700
committerSergey M․ <dstftw@gmail.com>2020-02-01 00:32:25 +0700
commit00de61a98feeb2cb03bbc3e467f2366314b61342 (patch)
treee4744b635be3c7927ed5c879c6d01b6845f511fa
parentd95a1cc98e83a9e0be291dface57ccc48b29e86b (diff)
downloadyoutube-dl-00de61a98feeb2cb03bbc3e467f2366314b61342.tar.gz
youtube-dl-00de61a98feeb2cb03bbc3e467f2366314b61342.tar.xz
youtube-dl-00de61a98feeb2cb03bbc3e467f2366314b61342.zip
[twitch:stream] Lowercase channel id for stream request (closes #23917)
-rw-r--r--youtube_dl/extractor/twitch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index a8c2502af..0db2dca41 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -575,8 +575,8 @@ class TwitchStreamIE(TwitchBaseIE):
         channel_id = self._match_id(url)
 
         stream = self._call_api(
-            'kraken/streams/%s?stream_type=all' % channel_id, channel_id,
-            'Downloading stream JSON').get('stream')
+            'kraken/streams/%s?stream_type=all' % channel_id.lower(),
+            channel_id, 'Downloading stream JSON').get('stream')
 
         if not stream:
             raise ExtractorError('%s is offline' % channel_id, expected=True)