crypto: Collapse an if tree.

master
Damir Jelić 2020-09-28 15:07:57 +02:00
parent 23173c4a1e
commit 721c459577
1 changed files with 9 additions and 11 deletions

View File

@ -360,19 +360,17 @@ impl KeyRequestMachine {
} else {
Err(KeyshareDecision::UntrustedDevice)
}
} else {
if let Some(outbound) = outbound_session {
if outbound
.shared_with()
.contains(&(device.user_id().to_owned(), device.device_id().to_owned()))
{
Ok(())
} else {
Err(KeyshareDecision::OutboundSessionNotShared)
}
} else if let Some(outbound) = outbound_session {
if outbound
.shared_with()
.contains(&(device.user_id().to_owned(), device.device_id().to_owned()))
{
Ok(())
} else {
Err(KeyshareDecision::MissingOutboundSession)
Err(KeyshareDecision::OutboundSessionNotShared)
}
} else {
Err(KeyshareDecision::MissingOutboundSession)
}
}