lvivski / start

Sinatra inspired web development framework for Dart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cookie method can not set more than one cookie per request

nkratzke opened this issue · comments

Cookie method of Response is not able to set more than one cookie per response.

I think header method is buggy.

  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;
  }

Fixed, thanks!