[ie/generic] Use https as fallback protocol (#14160)

Authored by: seproDev
pull/14167/head
sepro 1 week ago committed by GitHub
parent d6950c27af
commit fec30c56f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -772,8 +772,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.report_warning('The url doesn\'t specify the protocol, trying with http') self.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