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 5f37f0a commit 6384539Copy full SHA for 6384539
src/self_reporting.rs
@@ -57,12 +57,10 @@ struct ContactInfo {
57
id: ContactId,
58
59
verified: VerifiedStatus,
60
-
61
- #[serde(skip_serializing)]
62
- verifier: ContactId, // TODO unused, could be removed
63
bot: bool,
64
direct_chat: bool,
65
last_seen: u64,
+
66
//new: bool, // TODO
67
#[serde(skip_serializing_if = "Option::is_none")]
68
transitive_chain: Option<u32>,
@@ -103,7 +101,6 @@ async fn get_contact_infos(context: &Context) -> Result<Vec<ContactInfo>> {
103
101
Ok(ContactInfo {
104
102
id,
105
verified,
106
- verifier,
107
bot,
108
direct_chat: false, // will be filled later
109
last_seen,
0 commit comments