You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/contact.rs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -505,7 +505,11 @@ pub enum Origin {
505
505
/// set on Alice's side for contacts like Bob that have scanned the QR code offered by her. Only means the contact has once been established using the "securejoin" procedure in the past, getting the current key verification status requires calling contact_is_verified() !
506
506
SecurejoinInvited = 0x0100_0000,
507
507
508
-
/// set on Bob's side for contacts scanned and verified from a QR code. Only means the contact has once been established using the "securejoin" procedure in the past, getting the current key verification status requires calling contact_is_verified() !
508
+
/// Set on Bob's side for contacts scanned from a QR code.
509
+
/// Only means the contact has been scanned from the QR code,
510
+
/// but does not mean that securejoin succeeded
511
+
/// or the key has not changed since the last scan.
512
+
/// Getting the current key verification status requires calling contact_is_verified() !
509
513
SecurejoinJoined = 0x0200_0000,
510
514
511
515
/// contact added manually by create_contact(), this should be the largest origin as otherwise the user cannot modify the names
0 commit comments