mirror of
https://github.com/chatmail/core.git
synced 2026-04-28 02:46:29 +03:00
Apply gossiped encryption preference to new peerstates
Encryption preference was already applied since commit 78d855c5ca,
but only for already existing peerstates.
As a result, new users ignored gossiped encryption preference in the
"member added" message and had to wait until someone gossiped encryption
preferences for inactive users the second time.
This commit is contained in:
@@ -120,7 +120,15 @@ impl<'a> Peerstate<'a> {
|
||||
addr: gossip_header.addr.clone(),
|
||||
last_seen: 0,
|
||||
last_seen_autocrypt: 0,
|
||||
prefer_encrypt: Default::default(),
|
||||
|
||||
// Non-standard extension. According to Autocrypt 1.1.0 gossip headers SHOULD NOT
|
||||
// contain encryption preference.
|
||||
//
|
||||
// Delta Chat includes encryption preference to ensure new users introduced to a group
|
||||
// learn encryption preferences of other members immediately and don't send unencrypted
|
||||
// messages to a group where everyone prefers encryption.
|
||||
prefer_encrypt: gossip_header.prefer_encrypt,
|
||||
|
||||
public_key: None,
|
||||
public_key_fingerprint: None,
|
||||
gossip_key: Some(gossip_header.public_key.clone()),
|
||||
|
||||
Reference in New Issue
Block a user