Remove 'unlisted' handling for now.

It's just too slow (over 1 second on small systems, haven't looked at
the queries in detail yet). We'll need some other way to handle it.
This commit is contained in:
lain 2018-05-13 12:07:11 +02:00
commit 1027d1f696
2 changed files with 3 additions and 1 deletions

View file

@ -233,7 +233,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
q = fetch_activities_query(["https://www.w3.org/ns/activitystreams#Public"], opts)
q
|> restrict_unlisted()
# Too slow
# |> restrict_unlisted()
|> Repo.all()
|> Enum.reverse()
end