diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index 5ca6253e5..197721085 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -6583,7 +6583,7 @@ void dc_event_unref(dc_event_t* event); * @param data1 (int) The ID of the contact that wants to join. * @param data2 (int) The progress as: * 300=vg-/vc-request received, typically shown as "bob@addr joins". - * 600=vg-/vc-request-with-auth received, vg-member-added/vc-contact-confirm sent, typically shown as "bob@addr verified". + * 600=vg-/vc-request-with-auth received and verified, typically shown as "bob@addr verified". * 800=contact added to chat, shown as "bob@addr securely joined GROUP". Only for the verified-group-protocol. * 1000=Protocol finished for this contact. */ diff --git a/deltachat-jsonrpc/src/api/types/events.rs b/deltachat-jsonrpc/src/api/types/events.rs index 1ec0cdb03..2113a9d7a 100644 --- a/deltachat-jsonrpc/src/api/types/events.rs +++ b/deltachat-jsonrpc/src/api/types/events.rs @@ -305,7 +305,7 @@ pub enum EventType { /// Progress as: /// 300=vg-/vc-request received, typically shown as "bob@addr joins". - /// 600=vg-/vc-request-with-auth received, vg-member-added/vc-contact-confirm sent, typically shown as "bob@addr verified". + /// 600=vg-/vc-request-with-auth received and verified, typically shown as "bob@addr verified". /// 800=contact added to chat, shown as "bob@addr securely joined GROUP". Only for the verified-group-protocol. /// 1000=Protocol finished for this contact. progress: usize, diff --git a/src/events/payload.rs b/src/events/payload.rs index ca5f67e3b..fb0d972a3 100644 --- a/src/events/payload.rs +++ b/src/events/payload.rs @@ -274,7 +274,7 @@ pub enum EventType { /// Progress as: /// 300=vg-/vc-request received, typically shown as "bob@addr joins". - /// 600=vg-/vc-request-with-auth received, vg-member-added/vc-contact-confirm sent, typically shown as "bob@addr verified". + /// 600=vg-/vc-request-with-auth received and verified, typically shown as "bob@addr verified". /// 800=contact added to chat, shown as "bob@addr securely joined GROUP". Only for the verified-group-protocol. /// 1000=Protocol finished for this contact. progress: usize,