diff --git a/deltachat-jsonrpc/src/api/mod.rs b/deltachat-jsonrpc/src/api/mod.rs index aa1667fb4..04bec904c 100644 --- a/deltachat-jsonrpc/src/api/mod.rs +++ b/deltachat-jsonrpc/src/api/mod.rs @@ -915,7 +915,7 @@ impl CommandApi { MessageObject::from_message_id(&ctx, message_id).await } - async fn get_message_html(&self, account_id: u32, message_id: u32)->Result>{ + async fn get_message_html(&self, account_id: u32, message_id: u32) -> Result> { let ctx = self.get_context(account_id).await?; MsgId::new(message_id).get_html(&ctx).await }