generated from ElnuDev/rust-project
Better error handling
This commit is contained in:
parent
4d024d07a7
commit
9233d19a49
1 changed files with 10 additions and 2 deletions
|
@ -47,8 +47,16 @@ async fn event_handler(
|
|||
new_message.react(&ctx.http, '💤').await?;
|
||||
} else {
|
||||
println!("{}: {}", new_message.author.name, new_message.content);
|
||||
new_message.react(&ctx.http, '✅').await?;
|
||||
NARRATOR.speak(&format!("{} says {}", new_message.author.name, RE.replace_all(&new_message.content[PREFIX.len()..], "$1"))).unwrap();
|
||||
match NARRATOR.speak(&format!("{} says {}", new_message.author.name, RE.replace_all(&new_message.content[PREFIX.len()..], "$1"))) {
|
||||
Ok(_) => {
|
||||
new_message.react(&ctx.http, '✅').await?;
|
||||
},
|
||||
Err(err) => {
|
||||
println!("{err}");
|
||||
new_message.react(&ctx.http, '❌').await?;
|
||||
new_message.reply(&ctx.http, "TTS failed, message might be too long").await?;
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue