doc: create_group_chat_unencrypted() may lead to chat split on the first device

This commit is contained in:
iequidoo
2025-07-25 07:13:25 -03:00
committed by iequidoo
parent 3f371b3895
commit cd38aae4d6
2 changed files with 7 additions and 1 deletions

View File

@@ -1081,7 +1081,9 @@ impl CommandApi {
/// Create a new unencrypted group chat.
///
/// Same as [`Self::create_group_chat`], but the chat is unencrypted and can only have
/// address-contacts.
/// address-contacts. NB: Chats with similar names and the same members are merged on other
/// devices, but usually users don't create such chats and look up the existing one instead, so
/// chat split on the first device is acceptable.
async fn create_group_chat_unencrypted(&self, account_id: u32, name: String) -> Result<u32> {
let ctx = self.get_context(account_id).await?;
chat::create_group_unencrypted(&ctx, &name)