internal: remove outdated TODO

This commit is contained in:
Simon Ser 2020-02-12 20:06:06 +01:00
parent 7d0d522fa7
commit a81a7014c6
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48

View File

@ -83,7 +83,6 @@ func (c *Client) Do(req *http.Request) (*http.Response, error) {
if resp.StatusCode/100 != 2 { if resp.StatusCode/100 != 2 {
var wrappedErr error var wrappedErr error
if strings.HasPrefix(resp.Header.Get("Content-Type"), "text/") { if strings.HasPrefix(resp.Header.Get("Content-Type"), "text/") {
// TODO: if body is plaintext, read it and populate the error message
lr := io.LimitedReader{R: resp.Body, N: 1024} lr := io.LimitedReader{R: resp.Body, N: 1024}
var buf bytes.Buffer var buf bytes.Buffer
io.Copy(&buf, &lr) io.Copy(&buf, &lr)