From a520f0268fe95f3d9db572108882ac0cf014b2c1 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 26 Aug 2023 18:15:11 +0000 Subject: [PATCH] chore: rustfmt --- src/receive_imf.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/receive_imf.rs b/src/receive_imf.rs index 95fbfb03a..0ed1aa6fd 100644 --- a/src/receive_imf.rs +++ b/src/receive_imf.rs @@ -2214,7 +2214,9 @@ async fn has_verified_encryption( // and results in group-splits otherwise. if from_id != ContactId::SELF { let Some(peerstate) = &mimeparser.decryption_info.peerstate else { - return Ok(NotVerified("No peerstate, the contact isn't verified".to_string())); + return Ok(NotVerified( + "No peerstate, the contact isn't verified".to_string(), + )); }; if !peerstate.has_verified_key(&mimeparser.signatures) {