mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-13 17:20:14 +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();
|
var content = new StringBuilder();
|
||||||
content.Append("[Reply to ");
|
content.Append($"[Reply to]({message.JumpLink}) ");
|
||||||
|
|
||||||
if (message.WebhookMessage)
|
if (message.WebhookMessage)
|
||||||
content.Append($"**{message.Author.Username.EscapeMarkdown()}**");
|
content.Append($"**[{message.Author.Username.EscapeMarkdown()}]({message.JumpLink})**");
|
||||||
else
|
else
|
||||||
content.Append(message.Author.Mention);
|
content.Append(message.Author.Mention);
|
||||||
|
|
||||||
content.Append($"]({message.JumpLink}): ");
|
content.Append(": ");
|
||||||
|
|
||||||
if (message.Attachments.Count > 0)
|
if (message.Attachments.Count > 0)
|
||||||
content.Append($"{Emojis.Image} ");
|
content.Append($"{Emojis.Image} ");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue