[utils] Fix inconsistent default handling between HTTP and HTTPS requests (#4158)

Default headers such as `Content-Type` were only being added for HTTPS requests among other handling.

Fixes bug in be4a824d74

Authored-by: coletdjnz
pull/4165/head
coletdev 2022-06-24 03:29:28 +00:00 zatwierdzone przez GitHub
rodzic 06cc8f103b
commit 379a4f161d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1343,7 +1343,7 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
req.headers = handle_youtubedl_headers(req.headers)
return req
return super().do_request_(req)
def http_response(self, req, resp):
old_resp = resp