mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
add space to cookie header
This commit is contained in:
parent
1c6ddfd34c
commit
f8b8fe3865
1 changed files with 2 additions and 2 deletions
|
@ -548,7 +548,7 @@ impl ClientRequestBuilder {
|
||||||
let _ = write!(&mut cookie, "; {}={}", name, value);
|
let _ = write!(&mut cookie, "; {}={}", name, value);
|
||||||
}
|
}
|
||||||
request.headers.insert(
|
request.headers.insert(
|
||||||
header::COOKIE, HeaderValue::from_str(&cookie.as_str()[1..]).unwrap());
|
header::COOKIE, HeaderValue::from_str(&cookie.as_str()[2..]).unwrap());
|
||||||
}
|
}
|
||||||
request.body = body.into();
|
request.body = body.into();
|
||||||
Ok(request)
|
Ok(request)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue