1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-24 00:32:51 +08:00

Updated fix for Heise extractor

This commit is contained in:
Hier631 2017-12-20 21:49:12 +01:00 committed by GitHub
parent 4b1aead092
commit f64318ab19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ class HeiseIE(InfoExtractor):
def _real_extract(self, url):
mobile_url = re.sub(r'^(https?://)(?:www\.)?', r'\1m.', url)
video_id = self._match_id(mobile_url)
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
mobile_webpage = self._download_webpage(mobile_url, video_id)