Skip to content

Commit

Permalink
Fix extractor-arg
Browse files Browse the repository at this point in the history
  • Loading branch information
bashonly committed Mar 22, 2023
1 parent 0f4871f commit ebc49ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp_plugins/extractor/tt_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _get_sec_uid(self, user_url, user_name, msg):

def _real_extract(self, url):
user_name = self._match_id(url)
sec_uid = self._configuration_arg('sec_uid', [None], ie_key=TikTokIE)[0]
sec_uid = self._configuration_arg('sec_uid', [None], ie_key=TikTokIE, casesense=True)[0]

if not sec_uid:
for user_url, msg in (
Expand Down

0 comments on commit ebc49ed

Please sign in to comment.