Merge branch 'crypto-improvements' into new-state-store

master
Damir Jelić 2020-12-04 17:02:32 +01:00
commit 2bcdd0163b
2 changed files with 3 additions and 3 deletions

View File

@ -136,8 +136,8 @@ impl IdentityManager {
if user_id != &device_keys.user_id || device_id != &device_keys.device_id {
warn!(
"Mismatch in device keys payload of device {} from user {}",
device_keys.device_id, device_keys.user_id
"Mismatch in device keys payload of device {}|{} from user {}|{}",
device_id, device_keys.device_id, user_id, device_keys.user_id
);
continue;
}

View File

@ -307,7 +307,7 @@ impl Account {
// return with an error if it isn't one.
OlmMessage::Message(_) => {
warn!(
"Failed to decrypt a non-pre-key message with all
"Failed to decrypt a non-pre-key message with all \
available sessions {} {}",
sender, sender_key
);