looks like that .trim() was necessary after all

This commit is contained in:
EvilDeaaaadd 2019-10-01 00:42:52 +03:00
parent 8d5a5821d6
commit 5944c30067
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ fn compare_bot(ctx: &mut Context, message: &Message, mut args: Args) -> CommandR
#[command]
#[aliases("what's this")]
fn what(ctx: &mut Context, message: &Message, args: Args) -> CommandResult {
let text: String = args.rest().to_string();
let text: String = args.rest().trim().to_string();
let defs = &urbandict::get_definitions(&text.to_string())?;
let def = &defs[0];
let _ = message.channel_id.send_message(&ctx.http, |m| {