From f01b1d06012ad099427cabc0cc57ce7cd1e4e25e Mon Sep 17 00:00:00 2001 From: Simon Laux Date: Sat, 17 Jan 2026 16:26:58 +0100 Subject: [PATCH] don't emit changed on joining broadcast --- src/securejoin/bob.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/securejoin/bob.rs b/src/securejoin/bob.rs index e809faa56..e0d54ceeb 100644 --- a/src/securejoin/bob.rs +++ b/src/securejoin/bob.rs @@ -261,7 +261,8 @@ pub(super) async fn handle_auth_required( .await?; match invite { - QrInvite::Contact { .. } | QrInvite::Broadcast { .. } => { + QrInvite::Broadcast { .. } => {} + QrInvite::Contact { .. } => { // This is to tell UI that Chat.can_send has changed context.emit_event(EventType::ChatModified(chat_id)); }