[YoutubeDL] do not set HTTPS proxy implicitly

This commit is contained in:
kikuyan 2021-06-23 11:18:55 +09:00
parent a7f61feab2
commit 26d538ad4f

View file

@ -2386,9 +2386,6 @@ class YoutubeDL(object):
proxies = {'http': opts_proxy, 'https': opts_proxy}
else:
proxies = compat_urllib_request.getproxies()
# Set HTTPS proxy to HTTP one if given (https://github.com/ytdl-org/youtube-dl/issues/805)
if 'http' in proxies and 'https' not in proxies:
proxies['https'] = proxies['http']
proxy_handler = PerRequestProxyHandler(proxies)
debuglevel = 1 if self.params.get('debug_printtraffic') else 0