cargo fmt

This commit is contained in:
Simon Laux
2023-07-22 18:53:47 +02:00
committed by Simon Laux
parent 5673294623
commit b8fcb660ad

View File

@@ -1717,11 +1717,7 @@ impl CommandApi {
/// Some messages cannot be resent, eg. info-messages, drafts, already pending messages or messages that are not sent by SELF.
///
/// message_ids all message IDs that should be resend. All messages must belong to the same chat.
async fn resend_messages(
&self,
account_id: u32,
message_ids: Vec<u32>,
) -> Result<()> {
async fn resend_messages(&self, account_id: u32, message_ids: Vec<u32>) -> Result<()> {
let ctx = self.get_context(account_id).await?;
let message_ids: Vec<MsgId> = message_ids.into_iter().map(MsgId::new).collect();
chat::resend_msgs(&ctx, &message_ids).await