We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbd4662 commit 7f9c6b9Copy full SHA for 7f9c6b9
src/receive_imf.rs
@@ -493,6 +493,17 @@ pub(crate) async fn receive_imf_inner(
493
)
494
.await?;
495
496
+ // `None` means that the chat is encrypted,
497
+ // but we were not able to convert the address
498
+ // to PGP-contact, e.g.
499
+ // because there wase no corresponding
500
+ // Autocrypt-Gossip header.
501
+ //
502
+ // This way we still preserve remaining
503
+ // contact number and positions
504
+ // so we can match them contacts to
505
+ // e.g. Chat-Group-Member-Timestamps
506
+ // header.
507
let to_ids: Vec<Option<ContactId>>;
508
let past_ids: Vec<Option<ContactId>>;
509
0 commit comments