aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbashonly <bashonly@bashonly.com>2023-06-25 17:04:42 -0500
committerbashonly <bashonly@bashonly.com>2023-06-25 17:04:42 -0500
commitef8509c300ea50da86aea447eb214d3d6f6db6bb (patch)
treef7c92f88ec2731e40fb20b384db8b9e293afa69c
parent5e16cf92eb496b7c1541a6b1d727cb87542984db (diff)
downloadhypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.tar.lz
hypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.tar.xz
hypervideo-pre-ef8509c300ea50da86aea447eb214d3d6f6db6bb.zip
[extractor/kick] Fix `_VALID_URL`
Closes #7384 Authored by: bashonly
-rw-r--r--yt_dlp/extractor/kick.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/kick.py b/yt_dlp/extractor/kick.py
index 765ffa0c8..be1dfd4b1 100644
--- a/yt_dlp/extractor/kick.py
+++ b/yt_dlp/extractor/kick.py
@@ -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': {