Browse Source
[YoutubeDL] Recognize expires=0 as session cookies and send session cookies with requests
master
aegamesi
7 years ago
committed by
Sergey M․
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
7 additions and
1 deletions
-
youtube_dl/YoutubeDL.py
|
|
@ -2300,7 +2300,13 @@ class YoutubeDL(object): |
|
|
|
self.cookiejar = compat_cookiejar.MozillaCookieJar( |
|
|
|
opts_cookiefile) |
|
|
|
if os.access(opts_cookiefile, os.R_OK): |
|
|
|
self.cookiejar.load() |
|
|
|
self.cookiejar.load(ignore_discard=True, ignore_expires=True) |
|
|
|
# Force CookieJar to treat 'expires=0' cookies as session/discard cookies |
|
|
|
# Fixes https://bugs.python.org/issue17164 |
|
|
|
for cookie in self.cookiejar: |
|
|
|
if cookie.expires == 0: |
|
|
|
cookie.expires = None |
|
|
|
cookie.discard = True |
|
|
|
|
|
|
|
cookie_processor = YoutubeDLCookieProcessor(self.cookiejar) |
|
|
|
if opts_proxy is not None: |
|
|
|