Make pinned message formatting more condensed
This commit is contained in:
parent
30a4e1abd6
commit
5b738af0a6
|
@ -42,14 +42,15 @@ async fn pinned(ctx: &Context, message: &Message, mut args: Args) -> CommandResu
|
|||
guild_id, &pinned[idx].channel_id, &pinned[idx].id
|
||||
);
|
||||
|
||||
// TODO: change link formatting
|
||||
let _ = message
|
||||
.channel_id
|
||||
.send_message(&ctx.http, |m| {
|
||||
m.embed(|e| {
|
||||
e.title(format!("Pinned message #{}", idx + 1))
|
||||
.description(&pinned[idx].content)
|
||||
.field("🔗 link", format!("[original message]({})", msg_link), true)
|
||||
.description(&format!(
|
||||
"{}\n[**🔗 link**]({})",
|
||||
&pinned[idx].content, msg_link
|
||||
))
|
||||
.timestamp(&pinned[idx].timestamp);
|
||||
e.author(|a| {
|
||||
a.name(&pinned[idx].author.name)
|
||||
|
|
Loading…
Reference in New Issue