Revert "Remove 'unlisted' handling for now."

This reverts commit 1027d1f696.
This commit is contained in:
lain 2018-05-13 12:38:13 +02:00
parent 1027d1f696
commit c7a85de35c
2 changed files with 1 additions and 3 deletions

View File

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

View File

@ -171,7 +171,6 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
end
describe "public fetch activities" do
@tag :skip
test "doesn't retrieve unlisted activities" do
user = insert(:user)
{:ok, unlisted_activity} = CommonAPI.post(user, %{"status" => "yeah", "visibility" => "unlisted"})