Fix buffer read (break change)

This commit is contained in:
世界 2022-07-26 10:52:01 +08:00
parent c15de13f4f
commit bc109486f1
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 17 additions and 29 deletions

View file

@ -72,7 +72,7 @@ func (c *Client) DialContext(ctx context.Context, network string, destination M.
case http.StatusOK:
if reader.Buffered() > 0 {
buffer := buf.NewSize(reader.Buffered())
_, err = buffer.ReadFrom(reader)
_, err = buffer.ReadFullFrom(reader, buffer.FreeLen())
if err != nil {
return nil, err
}