1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-20 08:31:09 +00:00

updated cookie.rs req to get_changes

This commit is contained in:
dowwie 2019-06-24 18:40:14 -04:00
parent 382d4ca216
commit fa7e0fe6df

View file

@ -308,7 +308,7 @@ where
Session::set_session(state.into_iter(), &mut req);
Box::new(self.service.call(req).map(move |mut res| {
if let Some(state) = Session::get_changes(&mut res) {
if let (_status, Some(state)) = Session::get_changes(&mut res) {
res.checked_expr(|res| inner.set_cookie(res, state))
} else {
res