mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
Pass headers and body correctly to FetchOptions (#19884) [backport]
* Pass headers to FetchOptions Don't pass body if method is HttpGet or HttpHead * Syntax fixes * Restart CI
This commit is contained in:
@@ -90,8 +90,9 @@ func newfetchOptions*(metod: HttpMethod; body: cstring;
|
||||
headers: Headers = newHeaders()): FetchOptions =
|
||||
## Constructor for `FetchOptions`.
|
||||
result = FetchOptions(
|
||||
body: body, mode: cstring($mode), credentials: cstring($credentials), cache: cstring($cache), referrerPolicy: cstring($referrerPolicy),
|
||||
keepalive: keepalive, redirect: cstring($redirect), referrer: referrer, integrity: integrity,
|
||||
body: if metod notin {HttpHead, HttpGet}: body else: nil,
|
||||
mode: cstring($mode), credentials: cstring($credentials), cache: cstring($cache), referrerPolicy: cstring($referrerPolicy),
|
||||
keepalive: keepalive, redirect: cstring($redirect), referrer: referrer, integrity: integrity, headers: headers,
|
||||
metod: (case metod
|
||||
of HttpHead: "HEAD".cstring
|
||||
of HttpGet: "GET".cstring
|
||||
|
||||
Reference in New Issue
Block a user