forked from AkkomaGang/akkoma
Pleroma.User: Fix syntax and user.ap_id call
This commit is contained in:
parent
3d22642352
commit
39a5bea9b7
1 changed files with 3 additions and 3 deletions
|
@ -1204,13 +1204,13 @@ def parse_bio(bio, user) do
|
|||
end)
|
||||
|
||||
# TODO: get profile URLs other than user.ap_id
|
||||
profile_urls = [user[:ap_id]]
|
||||
profile_urls = [user.ap_id]
|
||||
|
||||
bio
|
||||
|> CommonUtils.format_input("text/plain", %{
|
||||
|> CommonUtils.format_input("text/plain", [
|
||||
mentions_format: :full,
|
||||
rel: &RelMe.maybe_put_rel_me(&1, profile_urls)
|
||||
})
|
||||
])
|
||||
|> elem(0)
|
||||
|> Formatter.emojify(emoji)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue