1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

remove a ?

This commit is contained in:
mat 2023-03-01 21:08:03 +00:00
parent 7bfca9d228
commit bf4ff51789

View file

@ -172,7 +172,7 @@ async fn swarm_handle(
tokio::time::sleep(Duration::from_secs(5)).await; tokio::time::sleep(Duration::from_secs(5)).await;
swarm swarm
.add_with_exponential_backoff(account, State::default()) .add_with_exponential_backoff(account, State::default())
.await?; .await;
} }
SwarmEvent::Chat(m) => { SwarmEvent::Chat(m) => {
println!("swarm chat message: {}", m.message().to_ansi()); println!("swarm chat message: {}", m.message().to_ansi());