don't emit changed on joining broadcast

This commit is contained in:
Simon Laux
2026-01-17 16:26:58 +01:00
parent ef309b5740
commit f01b1d0601

View File

@@ -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));
}