[backend/masto-client] Fix mentions acct in timeline views
This commit is contained in:
parent
a8f174f02a
commit
72066a576a
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public class NoteRenderer(
|
|||
.Select(u => new Mention {
|
||||
Id = u.Id,
|
||||
Username = u.Username,
|
||||
Acct = u.AcctWithPrefix,
|
||||
Acct = u.Acct,
|
||||
Url = u.UserProfile != null
|
||||
? u.UserProfile.Url ?? u.Uri ?? $"https://{config.Value.WebDomain}/@{u.Username}"
|
||||
: u.Uri ?? $"https://{config.Value.WebDomain}/@{u.Username}"
|
||||
|
|
Loading…
Add table
Reference in a new issue