Use HTTPS as default protocol instead of HTTP

pull/29950/head
James Groom 4 years ago committed by GitHub
parent a803582717
commit a5286055a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2344,8 +2344,8 @@ class GenericIE(InfoExtractor):
if default_search in ('auto', 'auto_warning', 'fixup_error'): if default_search in ('auto', 'auto_warning', 'fixup_error'):
if re.match(r'^[^\s/]+\.[^\s/]+/', url): if re.match(r'^[^\s/]+\.[^\s/]+/', url):
self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http') self._downloader.report_warning('The url doesn\'t specify the protocol, trying with https://')
return self.url_result('http://' + url) return self.url_result('https://' + url)
elif default_search != 'fixup_error': elif default_search != 'fixup_error':
if default_search == 'auto_warning': if default_search == 'auto_warning':
if re.match(r'^(?:url|URL)$', url): if re.match(r'^(?:url|URL)$', url):

Loading…
Cancel
Save