user: properly cope with actors which do not declare a followers collection

This commit is contained in:
William Pitcock 2019-03-19 18:23:06 +00:00
parent cd055983c3
commit 67ff8d9311
1 changed files with 2 additions and 3 deletions

View File

@ -104,9 +104,8 @@ defmodule Pleroma.User 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