Skip to content

Commit

Permalink
Remove the colon from the message generated by Message::reply (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
Miezhiko authored Aug 25, 2020
1 parent 1eb2714 commit 13bf356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/channel/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ impl Message {
}
}

let gen = format!("{}: {}", self.author.mention(), content);
let gen = format!("{} {}", self.author.mention(), content);

let map = json!({
"content": gen,
Expand Down

0 comments on commit 13bf356

Please sign in to comment.