electron-cookies icon indicating copy to clipboard operation
electron-cookies copied to clipboard

Cookie expiration

Open sean3z opened this issue 8 years ago • 2 comments

Have you given any thought to cookie expiration?

key=value; Expires=Thu, 01-Jan-1970 00:00:01 GMT

sean3z avatar Jan 04 '16 23:01 sean3z

It didn't handle any cookie expiration at the moment, on the other hand, it's killing the cookie if u are trying to set with the expiration date.

if (parts.length === 2) { key = parts[0], value = parts[1]; } else { value = parts[0]; key = ''; }

loming avatar Mar 11 '16 04:03 loming

I would like to see some form of cookie expiration done as well.

Mercieral avatar Jun 22 '16 13:06 Mercieral