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
Cookie method of Response is not able to set more than one cookie per response.
Response
I think header method is buggy.
header
header(String name, [value]) { if (value == null) { return _response.headers[name]; } _response.headers.set(name, value); return this; }
should be:
header(String name, [value]) { if (value == null) { return _response.headers[name]; } _response.headers.__add__(name, value); return this; }
The text was updated successfully, but these errors were encountered:
5e5c539
Fixed, thanks!
Sorry, something went wrong.
No branches or pull requests
Cookie method of
Response
is not able to set more than one cookie per response.I think
header
method is buggy.should be:
The text was updated successfully, but these errors were encountered: