Skip to content

Commit

Permalink
set include_pni_signature to always false for now
Browse files Browse the repository at this point in the history
  • Loading branch information
boxdot committed May 30, 2024
1 parent 99dd287 commit 76843a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion presage/src/manager/registered.rs
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,10 @@ impl<S: Store> Manager<S, Registered> {
let mut sender = self.new_message_sender().await?;

let online_only = false;
let include_pni_signature = true;
// TODO: Populate this flag based on the recipient information
//
// Issue <https://github.com/whisperfish/presage/issues/252>
let include_pni_signature = false;
let recipient = recipient_addr.into();
let mut content_body: ContentBody = message.into();

Expand Down

0 comments on commit 76843a0

Please sign in to comment.