Return profile URL when available instead of actor URI for MastodonAPI mention URL

Fixes #1165
This commit is contained in:
Thibaut Girka 2019-08-07 20:29:30 +00:00
parent aa718ab8f6
commit a10c840aba
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView 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