mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 06:07: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 {
|
if body != nil {
|
||||||
req.ContentLength = int64(len(*body))
|
req.ContentLength = int64(len(*body))
|
||||||
bc := ioutil.NopCloser(bytes.NewReader(*body))
|
req.Body = ioutil.NopCloser(bytes.NewReader(*body))
|
||||||
req.Body = bc
|
|
||||||
}
|
}
|
||||||
var err error
|
var err error
|
||||||
resolveByProxy := false
|
resolveByProxy := false
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue