Merge branch 'crypto-improvements' into new-state-store
commit
2bcdd0163b
|
@ -136,8 +136,8 @@ impl IdentityManager {
|
||||||
|
|
||||||
if user_id != &device_keys.user_id || device_id != &device_keys.device_id {
|
if user_id != &device_keys.user_id || device_id != &device_keys.device_id {
|
||||||
warn!(
|
warn!(
|
||||||
"Mismatch in device keys payload of device {} from user {}",
|
"Mismatch in device keys payload of device {}|{} from user {}|{}",
|
||||||
device_keys.device_id, device_keys.user_id
|
device_id, device_keys.device_id, user_id, device_keys.user_id
|
||||||
);
|
);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,7 +307,7 @@ impl Account {
|
||||||
// return with an error if it isn't one.
|
// return with an error if it isn't one.
|
||||||
OlmMessage::Message(_) => {
|
OlmMessage::Message(_) => {
|
||||||
warn!(
|
warn!(
|
||||||
"Failed to decrypt a non-pre-key message with all
|
"Failed to decrypt a non-pre-key message with all \
|
||||||
available sessions {} {}",
|
available sessions {} {}",
|
||||||
sender, sender_key
|
sender, sender_key
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue