cargo fmt

This commit is contained in:
Simon Laux
2025-01-12 04:16:57 +01:00
parent cbc79cdcc5
commit 0cbc1c3eb8
2 changed files with 2 additions and 4 deletions

View File

@@ -2148,7 +2148,6 @@ impl CommandApi {
Ok(msg_id)
}
async fn send_videochat_invitation(&self, account_id: u32, chat_id: u32) -> Result<u32> {
let ctx = self.get_context(account_id).await?;
chat::send_videochat_invitation(&ctx, ChatId::new(chat_id))

View File

@@ -709,7 +709,6 @@ impl From<deltachat::ephemeral::Timer> for EphemeralTimer {
}
}
#[derive(Deserialize, Serialize, TypeDef, schemars::JsonSchema)]
#[serde(rename_all = "camelCase")]
pub struct QuotedText {
@@ -717,5 +716,5 @@ pub struct QuotedText {
pub text: String,
/// protect specifies whether text should only be sent encrypted.
/// If it should, but the message is unencrypted, text is replaced with "...".
pub protect: bool
}
pub protect: bool,
}