mirror of
https://github.com/chatmail/core.git
synced 2026-05-03 21:36:29 +03:00
jsonrpc: add more functions, mostly message related (#3590)
* add more functions, see changelog for details * add pr number to changelog * clarify doc comment * clarify usage of BasicChat and adjust properties acordingly r10s is right it should only contain what we need of the expensive calls * fix doc typos * run cargo fmt * jsonrpc: add connectivity functions * fix typo * fix typo * Add get_contact_encryption_info and get_connectivity_html Fix get_connectivity_html and get_encrinfo futures not being Send. See https://github.com/rust-lang/rust/issues/101650 for more information. Co-authored-by: jikstra <jikstra@disroot.org> * Update CHANGELOG * Update typescript files * remove todo from changelog Co-authored-by: jikstra <jikstra@disroot.org>
This commit is contained in:
@@ -896,11 +896,8 @@ impl Contact {
|
||||
EncryptPreference::Reset => stock_str::encr_none(context).await,
|
||||
};
|
||||
|
||||
ret += &format!(
|
||||
"{}.\n{}:",
|
||||
stock_message,
|
||||
stock_str::finger_prints(context).await
|
||||
);
|
||||
let finger_prints = stock_str::finger_prints(context).await;
|
||||
ret += &format!("{}.\n{}:", stock_message, finger_prints);
|
||||
|
||||
let fingerprint_self = SignedPublicKey::load_self(context)
|
||||
.await?
|
||||
|
||||
Reference in New Issue
Block a user