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

View file

@ -43,7 +43,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI 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