From f30066c873c310e0ec6cf92b811436a4bd7a787d Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 5 Apr 2026 11:12:03 +0200 Subject: [PATCH] simplify --- src/securejoin.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/securejoin.rs b/src/securejoin.rs index 5c50f067b..f04a48caa 100644 --- a/src/securejoin.rs +++ b/src/securejoin.rs @@ -839,17 +839,6 @@ pub(crate) async fn observe_securejoin_on_other_device( inviter_progress(context, contact_id, chat_id, chat_type)?; } - if matches!(step, SecureJoinStep::RequestWithAuth) - && mime_message - .get_header(HeaderDef::SecureJoin) - .is_some_and(|s| s.starts_with("vc-")) - { - // This actually reflects what happens on the first device (which does the secure - // join) and causes a subsequent "vg-member-added" message to create an unblocked - // verified group. - ChatId::create_for_contact_with_blocked(context, contact_id, Blocked::Not).await?; - } - if matches!(step, SecureJoinStep::MemberAdded) { Ok(HandshakeMessage::Propagate) } else {