mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Fix buffer read (break change)
This commit is contained in:
parent
c15de13f4f
commit
bc109486f1
4 changed files with 17 additions and 29 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue