[extractor/kick] Fix `_VALID_URL`

Closes #7384
Authored by: bashonly
This commit is contained in:
bashonly 2023-06-25 17:04:42 -05:00
parent 5e16cf92eb
commit ef8509c300
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class KickBaseIE(InfoExtractor):
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': {