read device_id extractor arg case sensitively

the Device ID usually contains lowercase and uppercase letters, and twitch cares about it
This commit is contained in:
mpeter50 2023-09-09 21:52:57 +02:00
parent 7cdb94e892
commit e4a56bd921
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class TwitchBaseIE(InfoExtractor):
@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):