From 167812af9d10d6b3268224ed45aeecde91e79d01 Mon Sep 17 00:00:00 2001 From: mpeter50 <83356418+mpeter50@users.noreply.github.com> Date: Sat, 9 Sep 2023 21:52:57 +0200 Subject: [PATCH] read device_id extractor arg case sensitively the Device ID usually contains lowercase and uppercase letters, and twitch cares about it --- yt_dlp/extractor/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/twitch.py b/yt_dlp/extractor/twitch.py index 15cf51639..414cd9866 100644 --- a/yt_dlp/extractor/twitch.py +++ b/yt_dlp/extractor/twitch.py @@ -62,7 +62,7 @@ def _CLIENT_ID(self): @property def _DEVICE_ID(self): - return self._configuration_arg('device_id', [None], ie_key='Twitch')[0] + return self._configuration_arg('device_id', [None], ie_key='Twitch', casesense=True)[0] @property def _CLIENT_INTEGRITY(self):