Merge pull request from nixxo/la7-proto-fix

[la7] fix missing protocol
pull/5/head
Tom-Oliver Heidel 2020-11-05 17:25:58 +01:00 zatwierdzone przez GitHub
commit 06a8be981b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 0 usunięć
youtube_dlc/extractor

Wyświetl plik

@ -36,6 +36,9 @@ class LA7IE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
if not url.startswith('http'):
url = '%s//%s' % (self.http_scheme(), url)
webpage = self._download_webpage(url, video_id)
player_data = self._search_regex(