fix: Only omit group changes messages if SELF is really added (#7220)

If a self-addition message is received, but we're already in the group, there must be no hidden
member changes.
This commit is contained in:
iequidoo
2025-09-28 13:41:35 -03:00
committed by iequidoo
parent 1bb966e5a8
commit 6a7466df93
3 changed files with 20 additions and 2 deletions

View File

@@ -783,7 +783,12 @@ async fn test_verified_chat_editor_reordering() -> Result<()> {
tcm.section("Charlie receives member added message");
charlie.recv_msg(&sent_member_added_msg).await;
charlie
.golden_test_chat(
charlie_received_xdc.chat_id,
"verified_chats_editor_reordering",
)
.await;
Ok(())
}