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/monstercat.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/monstercat.py')
-rw-r--r-- | yt_dlp/extractor/monstercat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/monstercat.py b/yt_dlp/extractor/monstercat.py index cf5e09969..a69a12e18 100644 --- a/yt_dlp/extractor/monstercat.py +++ b/yt_dlp/extractor/monstercat.py @@ -16,7 +16,7 @@ from ..utils import ( class MonstercatIE(InfoExtractor): - _VALID_URL = r'https://www\.monstercat\.com/release/(?P<id>\d+)' + _VALID_URL = r'https?://www\.monstercat\.com/release/(?P<id>\d+)' _TESTS = [{ 'url': 'https://www.monstercat.com/release/742779548009', 'playlist_count': 20, |