Commit 6b27d4ce authored by Matt Holt's avatar Matt Holt

Merge pull request #131 from slav123/master

fastcgi: fix #127
parents 707ea554 f11e1360
......@@ -380,7 +380,10 @@ func (c *FCGIClient) Request(p map[string]string, req io.Reader) (resp *http.Res
if err != nil {
return
}
resp.Status = statusParts[1]
if len(statusParts) > 1 {
resp.Status = statusParts[1]
}
} else {
resp.StatusCode = http.StatusOK
}
......
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