mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
cleanup: xtransport: simplify body creation
This commit is contained in:
parent
345ec56cab
commit
a941cbd893
1 changed files with 1 additions and 2 deletions
|
@ -223,8 +223,7 @@ func (xTransport *XTransport) Fetch(method string, url *url.URL, accept string,
|
|||
}
|
||||
if body != nil {
|
||||
req.ContentLength = int64(len(*body))
|
||||
bc := ioutil.NopCloser(bytes.NewReader(*body))
|
||||
req.Body = bc
|
||||
req.Body = ioutil.NopCloser(bytes.NewReader(*body))
|
||||
}
|
||||
var err error
|
||||
resolveByProxy := false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue