Only return posts in TwAPI user view.

This commit is contained in:
lain 2018-02-26 09:02:14 +01:00
parent 82df16f7c3
commit a17ba0ee0d
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def fetch_public_and_external_statuses(user, opts \\ %{}) do
def fetch_user_statuses(user, opts \\ %{}) do
opts = opts
|> Map.put("type", ["Create", "Announce", "Follow"])
|> Map.put("type", ["Create"])
ActivityPub.fetch_public_activities(opts)
|> activities_to_statuses(%{for: user})
end