Return profile URL when available instead of actor URI for MastodonAPI mention URL
Fixes #1165
This commit is contained in:
parent
ba21d515d6
commit
6525fbac95
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ def render("mention.json", %{user: user}) do
|
|||
id: to_string(user.id),
|
||||
acct: user.nickname,
|
||||
username: username_from_nickname(user.nickname),
|
||||
url: user.ap_id
|
||||
url: User.profile_url(user) || user.ap_id
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue