Skip to content

Commit

Permalink
Set include_pni_signature to false as it should (#289)
Browse files Browse the repository at this point in the history
Until we correctly store recipients and mark them as PNI (will be the case with the sqlite store).
  • Loading branch information
gferon authored Nov 1, 2024
1 parent c6297fb commit ff708a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presage/src/manager/registered.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ impl<S: Store> Manager<S, Registered> {
key: profile_key.derive_access_key().to_vec(),
certificate: sender_certificate.clone(),
});
let include_pni_signature = true;
let include_pni_signature = false;
recipients.push((
ServiceAddress::from_aci(member.uuid),
unidentified_access,
Expand Down

0 comments on commit ff708a1

Please sign in to comment.