mirror of https://github.com/yt-dlp/yt-dlp.git
Revert "[utils] Encode URLs in `YoutubeDLCookieProcessor`"
This reverts commit 915f911e36
.
When the request is copied, `unredirected_hdrs` are not copied, which causes issues elsewhere
Reopens #263
This commit is contained in:
parent
07e4a40a9a
commit
f5fa042c82
|
@ -2926,15 +2926,7 @@ class YoutubeDLCookieProcessor(compat_urllib_request.HTTPCookieProcessor):
|
||||||
# response.headers[set_cookie_header] = set_cookie_escaped
|
# response.headers[set_cookie_header] = set_cookie_escaped
|
||||||
return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
|
return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
|
||||||
|
|
||||||
def http_request(self, request):
|
https_request = compat_urllib_request.HTTPCookieProcessor.http_request
|
||||||
# If the URL contains non-ASCII characters, the cookies
|
|
||||||
# are lost before the request reaches YoutubeDLHandler.
|
|
||||||
# So we percent encode the url before adding cookies
|
|
||||||
# See: https://github.com/yt-dlp/yt-dlp/issues/263
|
|
||||||
request = update_Request(request, url=escape_url(request.get_full_url()))
|
|
||||||
return compat_urllib_request.HTTPCookieProcessor.http_request(self, request)
|
|
||||||
|
|
||||||
https_request = http_request
|
|
||||||
https_response = http_response
|
https_response = http_response
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue