Skip to content

Commit

Permalink
chore: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Oct 27, 2024
1 parent bd9325d commit bd46fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/aionbot-adapter-onebot/src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Event for OnebotEvent {
let bot = self.bot.clone();
Box::pin(async move {
let message = message.to_string();
bot.send(&self, &message).await;
bot.send(self, &message).await;
Ok(())
})
}
Expand Down

0 comments on commit bd46fef

Please sign in to comment.