Skip to content
New issue

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 causes an exception when called with no options #50

Closed
nkratzke opened this issue Feb 24, 2014 · 0 comments
Closed

Cookie method causes an exception when called with no options #50

nkratzke opened this issue Feb 24, 2014 · 0 comments

Comments

@nkratzke
Copy link

Cookie method causes an exeception when called with no options.

app.get("/formular").listen((Request req) {
      req.response.cookie('test', 'example');
      req.response.send("something");
});

Above causes exception. The following works:

app.get("/formular").listen((Request req) {
      req.response.cookie('test', 'example', {});
      req.response.send("something");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant