Skip to content

Commit

Permalink
Merge pull request #77 from brainless83/master
Browse files Browse the repository at this point in the history
Mono Cookie Issue
  • Loading branch information
mythz committed Jan 26, 2012
2 parents f8a9424 + ef80f1d commit fa1c098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceStack/ServiceHost/Cookies.cs
Expand Up @@ -54,7 +54,7 @@ public HttpCookie ToHttpCookie(Cookie cookie)
return new HttpCookie(cookie.Name, cookie.Value) {
Path = cookie.Path,
Expires = cookie.Expires,
Domain = cookie.Domain,
Domain = (string.IsNullOrEmpty(cookie.Domain)) ? null : cookie.Domain,
};
}

Expand Down

0 comments on commit fa1c098

Please sign in to comment.