Revert "Remove 'unlisted' handling for now."
authorlain <lain@soykaf.club>
Sun, 13 May 2018 10:38:13 +0000 (12:38 +0200)
committerlain <lain@soykaf.club>
Sun, 13 May 2018 10:38:13 +0000 (12:38 +0200)
This reverts commit 1027d1f6963b495a5abc67b05447619ce7d429db.

lib/pleroma/web/activity_pub/activity_pub.ex
test/web/activity_pub/activity_pub_test.exs

index 4bd56d12312960d5183c1c5d9c4b2af2b71821b7..491ad370592faacfeeabe39ec30aee1a8a0c0df7 100644 (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
index c4b59f5c7739a62574b8bf9d5ecc0593547153cf..a39ba9adb1d2c7a94a93a149701bae492a497e16 100644 (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"})