Update to work with Rocket 0.5.1

master
David Caldwell 5 days ago
parent 82f9519f95
commit a3fbb8ae67
  1. 6
      src/lib.rs

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

Loading…
Cancel
Save