forked from AkkomaGang/akkoma
user: properly cope with actors which do not declare a followers collection
This commit is contained in:
parent
cd055983c3
commit
67ff8d9311
1 changed files with 2 additions and 3 deletions
|
@ -104,9 +104,8 @@ def ap_id(%User{nickname: nickname}) do
|
|||
"#{Web.base_url()}/users/#{nickname}"
|
||||
end
|
||||
|
||||
def ap_followers(%User{} = user) do
|
||||
"#{ap_id(user)}/followers"
|
||||
end
|
||||
def ap_followers(%User{follower_address: fa}) when is_binary(fa), do: fa
|
||||
def ap_followers(%User{} = user), do: "#{ap_id(user)}/followers"
|
||||
|
||||
def user_info(%User{} = user) do
|
||||
oneself = if user.local, do: 1, else: 0
|
||||
|
|
Loading…
Reference in a new issue