mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-12 20:41:21 +00:00
[downloader/external] Fix WgetFD proxy (rev 2)
From PR (defunct source), closes #29343. Matches https://github.com/yt-dlp/yt-dlp/pull/3152 Thx former user kikuyan.
This commit is contained in:
parent
7687389f08
commit
48ddab1f3a
1 changed files with 4 additions and 1 deletions
|
@ -206,7 +206,10 @@ class WgetFD(ExternalFD):
|
|||
retry[1] = '0'
|
||||
cmd += retry
|
||||
cmd += self._option('--bind-address', 'source_address')
|
||||
cmd += self._option('--proxy', 'proxy')
|
||||
proxy = self.params.get('proxy')
|
||||
if proxy:
|
||||
for var in ('http_proxy', 'https_proxy'):
|
||||
cmd += ['--execute', '%s=%s' % (var, proxy)]
|
||||
cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')
|
||||
cmd += self._configuration_args()
|
||||
cmd += ['--', info_dict['url']]
|
||||
|
|
Loading…
Reference in a new issue