Compare commits

..

No commits in common. 'master' and 'master' have entirely different histories.

  1. 6
      src/lib.rs

@ -126,7 +126,7 @@ where
{ {
type Error = (); type Error = ();
async fn from_request(request: &'r Request<'_>) -> Outcome<Self, (Status, Self::Error), Status> { async fn from_request(request: &'r Request<'_>) -> Outcome<Self, (Status, Self::Error), ()> {
let store = request.guard::<&State<SessionStore<D>>>().await.unwrap(); let store = request.guard::<&State<SessionStore<D>>>().await.unwrap();
Outcome::Success(Session { Outcome::Success(Session {
id: request.local_cache(|| { id: request.local_cache(|| {
@ -321,9 +321,9 @@ where
if !session.0.is_empty() { if !session.0.is_empty() {
response.adjoin_header( response.adjoin_header(
Cookie::build((self.config.cookie_name.clone(), session.to_string())) Cookie::build(self.config.cookie_name.clone(), session.to_string())
.path("/") .path("/")
.build(), .finish(),
); );
} }
} }

Loading…
Cancel
Save