1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[senateisvp] Allow https URL scheme for embeds

This commit is contained in:
John Hawkinson 2017-03-20 11:35:13 -04:00 committed by Sergey M
parent 957f453429
commit 8a8cc339b6

View File

@ -89,7 +89,7 @@ class SenateISVPIE(InfoExtractor):
@staticmethod
def _search_iframe_url(webpage):
mobj = re.search(
r"<iframe[^>]+src=['\"](?P<url>http://www\.senate\.gov/isvp/?\?[^'\"]+)['\"]",
r"<iframe[^>]+src=['\"](?P<url>https?://www\.senate\.gov/isvp/?\?[^'\"]+)['\"]",
webpage)
if mobj:
return mobj.group('url')