Skip to content

Commit

Permalink
[extractor/kick] Fix _VALID_URL
Browse files Browse the repository at this point in the history
Closes #7384
Authored by: bashonly
  • Loading branch information
bashonly committed Jun 25, 2023
1 parent 5e16cf9 commit ef8509c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/kick.py
Expand Up @@ -30,7 +30,7 @@ def _call_api(self, path, display_id, note='Downloading API JSON', headers={}, *


class KickIE(KickBaseIE):
_VALID_URL = r'https?://(?:www\.)?kick\.com/(?!(?:video|categories|search|auth)(?:[/?#]|$))(?P<id>[\w_]+)'
_VALID_URL = r'https?://(?:www\.)?kick\.com/(?!(?:video|categories|search|auth)(?:[/?#]|$))(?P<id>[\w-]+)'
_TESTS = [{
'url': 'https://kick.com/yuppy',
'info_dict': {
Expand Down

0 comments on commit ef8509c

Please sign in to comment.