[backend/libmfm] Add missing @ when rendering unresolved mentions to html
This commit is contained in:
parent
6a3d1bd16a
commit
fd5a524a8c
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ public class MfmConverter(IOptions<Config.InstanceSection> config)
|
||||||
p.Host.EqualsIgnoreCase(finalHost));
|
p.Host.EqualsIgnoreCase(finalHost));
|
||||||
if (mention == null)
|
if (mention == null)
|
||||||
{
|
{
|
||||||
el.TextContent = mentionNode.Acct;
|
el.TextContent = $"@{mentionNode.Acct}";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue