mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
parent
cf9d6cfb0c
commit
915f911e36
@ -2921,7 +2921,15 @@ def http_response(self, request, response):
|
||||
# response.headers[set_cookie_header] = set_cookie_escaped
|
||||
return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
|
||||
|
||||
https_request = compat_urllib_request.HTTPCookieProcessor.http_request
|
||||
def http_request(self, 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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user