mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	This commit is contained in:
		| @@ -2899,7 +2899,10 @@ class InfoExtractor(object): | |||||||
|         """ Return a compat_cookies.SimpleCookie with the cookies for the url """ |         """ Return a compat_cookies.SimpleCookie with the cookies for the url """ | ||||||
|         req = sanitized_Request(url) |         req = sanitized_Request(url) | ||||||
|         self._downloader.cookiejar.add_cookie_header(req) |         self._downloader.cookiejar.add_cookie_header(req) | ||||||
|         return compat_cookies.SimpleCookie(req.get_header('Cookie')) |         cookie = req.get_header('Cookie') | ||||||
|  |         if cookie and sys.version_info[0] == 2: | ||||||
|  |             cookie = str(cookie) | ||||||
|  |         return compat_cookies.SimpleCookie(cookie) | ||||||
|  |  | ||||||
|     def _apply_first_set_cookie_header(self, url_handle, cookie): |     def _apply_first_set_cookie_header(self, url_handle, cookie): | ||||||
|         """ |         """ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user