From 292bd9f58d71f074bd56acb4ee24426e9c5dc102 Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 11 Aug 2026 10:27:48 +0000 Subject: [PATCH] docs: do not talk about verified chats in securejoin QR-scanning functions The chat is always going to be encrypted, this is enough. We actually do mark the contact as verified, but the meaning of this verification is unclear and we don't even display it visibly in the chat anymore. --- deltachat-ffi/deltachat.h | 1 - deltachat-jsonrpc/src/api.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index bac8361e9..1f4d430a8 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -2626,7 +2626,6 @@ char* dc_get_securejoin_qr_svg (dc_context_t* context, uint32_ * to dc_check_qr(). * @return The chat ID of the joined chat, the UI may redirect to the this chat. * On errors, 0 is returned, however, most errors will happen during handshake later on. - * A returned chat ID does not guarantee that the chat is protected or the belonging contact is verified. */ uint32_t dc_join_securejoin (dc_context_t* context, const char* qr); diff --git a/deltachat-jsonrpc/src/api.rs b/deltachat-jsonrpc/src/api.rs index b070be94d..c2014baba 100644 --- a/deltachat-jsonrpc/src/api.rs +++ b/deltachat-jsonrpc/src/api.rs @@ -935,7 +935,6 @@ impl CommandApi { /// to `check_qr()`. /// /// **returns**: The chat ID of the joined chat, the UI may redirect to the this chat. - /// A returned chat ID does not guarantee that the chat is protected or the belonging contact is verified. /// async fn secure_join(&self, account_id: u32, qr: String) -> Result { let ctx = self.get_context(account_id).await?;