mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-08-07 20:58:34 +03:00
[cleanup, ie] Match both http and https in _VALID_URL (#8968)
Except for Vimeo, since that causes matching collisions. Authored by: seproDev
This commit is contained in:
@@ -83,7 +83,7 @@ class TeleQuebecIE(TeleQuebecBaseIE):
|
||||
|
||||
|
||||
class TeleQuebecSquatIE(InfoExtractor):
|
||||
_VALID_URL = r'https://squat\.telequebec\.tv/videos/(?P<id>\d+)'
|
||||
_VALID_URL = r'https?://squat\.telequebec\.tv/videos/(?P<id>\d+)'
|
||||
_TESTS = [{
|
||||
'url': 'https://squat.telequebec.tv/videos/9314',
|
||||
'info_dict': {
|
||||
|
||||
Reference in New Issue
Block a user