[backend/libmfm] Add missing @ when rendering unresolved mentions to html

This commit is contained in:
Laura Hausmann 2024-05-17 22:27:16 +02:00
parent 6a3d1bd16a
commit fd5a524a8c
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -219,7 +219,7 @@ public class MfmConverter(IOptions<Config.InstanceSection> config)
p.Host.EqualsIgnoreCase(finalHost));
if (mention == null)
{
el.TextContent = mentionNode.Acct;
el.TextContent = $"@{mentionNode.Acct}";
}
else
{