mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
Don't add content-length header on GET request when there is no body. (#16196)
* Don't add content-length header on GET request when there is no body. * Add space between the not and the (. * Take Dom's suggestion.
This commit is contained in:
@@ -980,7 +980,7 @@ proc requestAux(client: HttpClient | AsyncHttpClient, url, httpMethod: string,
|
||||
var data: seq[string]
|
||||
if multipart != nil and multipart.content.len > 0:
|
||||
data = await client.format(multipart)
|
||||
else:
|
||||
elif httpMethod in ["POST", "PATCH", "PUT"] or body.len != 0:
|
||||
client.headers["Content-Length"] = $body.len
|
||||
|
||||
when client is AsyncHttpClient:
|
||||
|
||||
Reference in New Issue
Block a user