1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-10-02 23:47:08 +02:00

[networking] Fix --legacy-server-connect (#7645)

Bugfix for 227bf1a33b

Authored by: bashonly
This commit is contained in:
bashonly 2023-07-20 08:31:17 -05:00 committed by GitHub
parent 71baa490eb
commit 75dc8e673b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1152,7 +1152,7 @@ def test_build_handler_params(self):
'debug_printtraffic': True,
'compat_opts': ['no-certifi'],
'nocheckcertificate': True,
'legacy_server_connect': True,
'legacyserverconnect': True,
}) as ydl:
rh = self.build_handler(ydl)
assert rh.headers.get('test') == 'testtest'

View File

@ -4097,7 +4097,7 @@ def build_request_director(self, handlers):
'verbose': 'debug_printtraffic',
'source_address': 'source_address',
'timeout': 'socket_timeout',
'legacy_ssl_support': 'legacy_server_connect',
'legacy_ssl_support': 'legacyserverconnect',
'enable_file_urls': 'enable_file_urls',
'client_cert': {
'client_certificate': 'client_certificate',