Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
Co-authored-by: Jan Verbeek <[email protected]>
  • Loading branch information
kranurag7 and blyxxyz authored Jan 5, 2025
1 parent 153b026 commit 377d86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ impl Session {
Cookies::Map(_) => unreachable!(),
Cookies::List(cookies) => cookies.iter().map(|cookie| {
let mut cookie_builder =
cookie_store::RawCookie::build(cookie.name.clone());
cookie_store::RawCookie::build((cookie.name.clone(), cookie.value.clone()));

if let Some(expires) = cookie.expires {
cookie_builder =
Expand Down

0 comments on commit 377d86a

Please sign in to comment.