mirror of
https://github.com/fafhrd91/actix-web
synced 2025-06-25 06:39:22 +02:00
reverting change to get_session due to side effects
This commit is contained in:
@ -197,7 +197,7 @@ impl Session {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_session(extensions: &mut Extensions) -> Session {
|
||||
fn get_session(extensions: &mut Extensions) -> Session {
|
||||
if let Some(s_impl) = extensions.get::<Rc<RefCell<SessionInner>>>() {
|
||||
return Session(Rc::clone(&s_impl));
|
||||
}
|
||||
|
Reference in New Issue
Block a user