mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Fix reply formatting on mobile
This commit is contained in:
parent
96ba511026
commit
e2d76fe809
1 changed files with 3 additions and 3 deletions
|
|
@ -138,14 +138,14 @@ namespace PluralKit.Bot
|
|||
}
|
||||
|
||||
var content = new StringBuilder();
|
||||
content.Append("[Reply to ");
|
||||
content.Append($"[Reply to]({message.JumpLink}) ");
|
||||
|
||||
if (message.WebhookMessage)
|
||||
content.Append($"**{message.Author.Username.EscapeMarkdown()}**");
|
||||
content.Append($"**[{message.Author.Username.EscapeMarkdown()}]({message.JumpLink})**");
|
||||
else
|
||||
content.Append(message.Author.Mention);
|
||||
|
||||
content.Append($"]({message.JumpLink}): ");
|
||||
content.Append(": ");
|
||||
|
||||
if (message.Attachments.Count > 0)
|
||||
content.Append($"{Emojis.Image} ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue