[cookies] Load cookies with float `expires` timestamps (#13873)

Authored by: bashonly
pull/13460/merge
bashonly 2 days ago committed by GitHub
parent 682334e4b3
commit 28b68f6875
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1335,7 +1335,7 @@ class YoutubeDLCookieJar(http.cookiejar.MozillaCookieJar):
if len(cookie_list) != self._ENTRY_LEN:
raise http.cookiejar.LoadError(f'invalid length {len(cookie_list)}')
cookie = self._CookieFileEntry(*cookie_list)
if cookie.expires_at and not cookie.expires_at.isdigit():
if cookie.expires_at and not re.fullmatch(r'[0-9]+(?:\.[0-9]+)?', cookie.expires_at):
raise http.cookiejar.LoadError(f'invalid expires at {cookie.expires_at}')
return line

Loading…
Cancel
Save