Commit d9129ab7 authored by wangmingming's avatar wangmingming

11

parent 6e03f707
Pipeline #360 failed with stages
......@@ -40,7 +40,7 @@ func (c *Client) Start() error {
t := strings.Split(strings.TrimSpace(ck), "=")
cookies = append(cookies, &http.Cookie{
Name: t[0],
Value: t[1],
Value: strings.Join(t[1:], ""),
})
}
c.Jar.SetCookies(uri, cookies)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment