mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-22 14:57:56 +01:00
Fixes warnings
This commit is contained in:
parent
e130e59651
commit
c8623fd62b
@ -58,7 +58,7 @@ impl Callback for CB {
|
|||||||
let pass = session.get_property::<Password>()
|
let pass = session.get_property::<Password>()
|
||||||
.ok_or(SessionError::no_property::<Password>())?;
|
.ok_or(SessionError::no_property::<Password>())?;
|
||||||
|
|
||||||
if let Some(opt) = self.userdb.login(authid.as_ref(), pass.as_bytes()).unwrap() {
|
if self.userdb.login(authid.as_ref(), pass.as_bytes()).unwrap().is_some() {
|
||||||
return Ok(())
|
return Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,7 +190,7 @@ impl authentication_system::Server for Auth {
|
|||||||
|
|
||||||
let mut outcome = pry!(res.get().get_response()).init_outcome();
|
let mut outcome = pry!(res.get().get_response()).init_outcome();
|
||||||
outcome.reborrow().set_result(response::Result::Successful);
|
outcome.reborrow().set_result(response::Result::Successful);
|
||||||
if let Some(data) = b {
|
if b.is_some() {
|
||||||
outcome.init_additional_data().set_additional(&out.get_ref());
|
outcome.init_additional_data().set_additional(&out.get_ref());
|
||||||
}
|
}
|
||||||
Promise::ok(())
|
Promise::ok(())
|
||||||
|
Loading…
Reference in New Issue
Block a user