1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

reverting change to get_session due to side effects

This commit is contained in:
dowwie 2019-06-13 09:19:03 -04:00
parent 73ae801a13
commit 32a66a99bf

View File

@ -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));
}