read device_id extractor arg case sensitively

the Device ID usually contains lowercase and uppercase letters, and twitch cares about it
pull/1551/head
mpeter50 2 years ago
parent 27b8892037
commit 167812af9d

@ -62,7 +62,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):

Loading…
Cancel
Save