mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Merge pull request #177 from acw0/bugfix/tag-markdown
Properly show tags containing markdown in system embed
This commit is contained in:
commit
4a4d980349
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ namespace PluralKit.Bot {
|
|||
string.Join(", ", switchMembers.Select(m => m.Name)));
|
||||
}
|
||||
|
||||
if (system.Tag != null) eb.AddField("Tag", system.Tag);
|
||||
if (system.Tag != null) eb.AddField("Tag", system.Tag.EscapeMarkdown());
|
||||
eb.AddField("Linked accounts", string.Join(", ", users).Truncate(1000), true);
|
||||
|
||||
if (system.MemberListPrivacy.CanAccess(ctx))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue