Fix copy/paste typo
This commit is contained in:
parent
a5ec30e106
commit
28fddc1758
@ -159,11 +159,12 @@ class MegaTVComEmbedIE(MegaTVComBaseIE):
|
|||||||
(?P<url>%(url_re)s)(?P=_q1)
|
(?P<url>%(url_re)s)(?P=_q1)
|
||||||
''' % {'quot_re': r'["\']', 'url_re': _URL_RE}
|
''' % {'quot_re': r'["\']', 'url_re': _URL_RE}
|
||||||
for mobj in re.finditer(EMBED_RE, webpage):
|
for mobj in re.finditer(EMBED_RE, webpage):
|
||||||
|
url = unescapeHTML(mobj.group('url'))
|
||||||
if url.startswith('//'):
|
if url.startswith('//'):
|
||||||
scheme = compat_urllib_parse_urlparse(origin_url).scheme \
|
scheme = compat_urllib_parse_urlparse(origin_url).scheme \
|
||||||
if origin_url else 'https'
|
if origin_url else 'https'
|
||||||
url = '%s:%s' % (scheme, url)
|
url = '%s:%s' % (scheme, url)
|
||||||
yield unescapeHTML(mobj.group('url'))
|
yield url
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
webpage = self._download_webpage(url, 'N/A')
|
webpage = self._download_webpage(url, 'N/A')
|
||||||
|
Loading…
Reference in New Issue
Block a user