crypto: Fix a clippy warning and some spelling.

master
Damir Jelić 2020-08-20 16:06:06 +02:00
parent 552a12eeed
commit c307690c2e
1 changed files with 8 additions and 10 deletions

View File

@ -558,7 +558,7 @@ impl OlmMachine {
|| user_signing.user_id() != user_id
{
warn!(
"User id missmatch in one of the cross signing keys for user {}",
"User id mismatch in one of the cross signing keys for user {}",
user_id
);
continue;
@ -574,16 +574,14 @@ impl OlmMachine {
);
continue;
}
} else if master_key.user_id() != user_id || self_signing.user_id() != user_id {
warn!(
"User id mismatch in one of the cross signing keys for user {}",
user_id
);
continue;
} else {
if master_key.user_id() != user_id || self_signing.user_id() != user_id {
warn!(
"User id missmatch in one of the cross signing keys for user {}",
user_id
);
continue;
} else {
UserIdentity::new(master_key, self_signing).map(UserIdentities::Other)
}
UserIdentity::new(master_key, self_signing).map(UserIdentities::Other)
};
match identity {