mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-15 12:53:18 +00:00
[rte] Actually recognize https urls
There was a missing 's' before the '?'.
This commit is contained in:
parent
36eb802baf
commit
6df7179e6c
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
|
|
||||||
class RteIE(InfoExtractor):
|
class RteIE(InfoExtractor):
|
||||||
_VALID_URL = r'http?://(?:www\.)?rte\.ie/player/[^/]{2,3}/show/[^/]+/(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://(?:www\.)?rte\.ie/player/[^/]{2,3}/show/[^/]+/(?P<id>[0-9]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://www.rte.ie/player/ie/show/iwitness-862/10478715/',
|
'url': 'http://www.rte.ie/player/ie/show/iwitness-862/10478715/',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
|
Loading…
Reference in a new issue