feat: Better logging for securejoin messages

This commit is contained in:
Hocuri
2025-12-10 22:17:21 +01:00
parent 3d234e7fc7
commit eaa080900f

View File

@@ -677,12 +677,22 @@ pub(crate) async fn receive_imf_inner(
let res = if mime_parser.incoming { let res = if mime_parser.incoming {
handle_securejoin_handshake(context, &mut mime_parser, from_id) handle_securejoin_handshake(context, &mut mime_parser, from_id)
.await .await
.context("error in Secure-Join message handling")? .with_context(|| {
format!(
"error in Secure-Join '{}' message handling",
mime_parser.get_header(HeaderDef::SecureJoin).unwrap_or("")
)
})?
} else if let Some(to_id) = to_ids.first().copied().flatten() { } else if let Some(to_id) = to_ids.first().copied().flatten() {
// handshake may mark contacts as verified and must be processed before chats are created // handshake may mark contacts as verified and must be processed before chats are created
observe_securejoin_on_other_device(context, &mime_parser, to_id) observe_securejoin_on_other_device(context, &mime_parser, to_id)
.await .await
.context("error in Secure-Join watching")? .with_context(|| {
format!(
"error in Secure-Join '{}' watching",
mime_parser.get_header(HeaderDef::SecureJoin).unwrap_or("")
)
})?
} else { } else {
securejoin::HandshakeMessage::Propagate securejoin::HandshakeMessage::Propagate
}; };