Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src-tauri/src/commands/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,8 +653,7 @@ pub async fn invite_member_to_group(
.await
.map_err(|e| format!("Task join error: {}", e))??;

// Sync participants array after adding members
sync_mls_group_participants(group_id).await?;
// Participant sync happens inside the background task after merge completes

Ok(())
}
Expand All @@ -681,8 +680,7 @@ pub async fn remove_mls_member_device(
.await
.map_err(|e| format!("Task join error: {}", e))??;

// Sync participants array after removing member
sync_mls_group_participants(group_id).await?;
// Participant sync happens inside the background task after merge completes

Ok(())
}
Expand Down
Loading