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/novaplay.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/novaplay.py')
-rw-r--r-- | yt_dlp/extractor/novaplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/novaplay.py b/yt_dlp/extractor/novaplay.py index 77ae03fd0..adab33f59 100644 --- a/yt_dlp/extractor/novaplay.py +++ b/yt_dlp/extractor/novaplay.py @@ -3,7 +3,7 @@ from ..utils import int_or_none, parse_duration, parse_iso8601 class NovaPlayIE(InfoExtractor): - _VALID_URL = r'https://play\.nova\.bg/video/[^?#]+/(?P<id>\d+)' + _VALID_URL = r'https?://play\.nova\.bg/video/[^?#]+/(?P<id>\d+)' _TESTS = [ { 'url': 'https://play.nova.bg/video/ochakvaite/season-0/ochakvaite-2022-07-22-sybudi-se-sat/606627', |