We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quote from http://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/4731/:
I am attempting to set the max age of a cookie but the browser shows Expiration/Max-Age as "session": Cookie cooky = new Cookie(); cooky.maxAge = 10; cooky.value = "boo!"; res.cookies["my_cooky"] = cooky; res.redirect("/index.html");
I am attempting to set the max age of a cookie but the browser shows Expiration/Max-Age as "session":
Cookie cooky = new Cookie(); cooky.maxAge = 10; cooky.value = "boo!"; res.cookies["my_cooky"] = cooky; res.redirect("/index.html");
The text was updated successfully, but these errors were encountered:
Merge pull request #334 from japplegame/fix-issue330
1ca5107
fix Issue #330 - Cookie max-age property has no effect
No branches or pull requests
Quote from http://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/4731/:
The text was updated successfully, but these errors were encountered: