1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-12-03 22:39:24 +02:00

Fixed typo in Cookies

This commit is contained in:
Andy Grunwald
2016-06-03 22:43:41 +02:00
parent 9b1bc58830
commit 077933ab00
2 changed files with 6 additions and 8 deletions

View File

@@ -84,7 +84,7 @@ func (c *Client) NewRequest(method, urlStr string, body interface{}) (*http.Requ
// Set session cookie if there is one
if c.session != nil {
for _, cookie := range c.session.SetCoockie {
for _, cookie := range c.session.Cookies {
req.AddCookie(cookie)
}
}