diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2024-02-01 19:38:42 +0100 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:51:38 +0530 |
commit | a687226b48f71b874fa18b0165ec528d591f53fb (patch) | |
tree | 6c61191f3f9174fbece63418f5fa8f55ec23d679 /yt_dlp/extractor/cybrary.py | |
parent | 93240fc1848de4a94f25844c96e0dcd282ef1d3b (diff) |
[cleanup, ie] Match both `http` and `https` in `_VALID_URL` (#8968)
Except for Vimeo, since that causes matching collisions.
Authored by: seproDev
Diffstat (limited to 'yt_dlp/extractor/cybrary.py')
-rw-r--r-- | yt_dlp/extractor/cybrary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/cybrary.py b/yt_dlp/extractor/cybrary.py index 614d0cd9e..c6995b25b 100644 --- a/yt_dlp/extractor/cybrary.py +++ b/yt_dlp/extractor/cybrary.py @@ -110,7 +110,7 @@ class CybraryIE(CybraryBaseIE): class CybraryCourseIE(CybraryBaseIE): - _VALID_URL = r'https://app\.cybrary\.it/browse/course/(?P<id>[\w-]+)/?(?:$|[#?])' + _VALID_URL = r'https?://app\.cybrary\.it/browse/course/(?P<id>[\w-]+)/?(?:$|[#?])' _TESTS = [{ 'url': 'https://app.cybrary.it/browse/course/az-500-microsoft-azure-security-technologies', 'info_dict': { |