diff options
author | lain <lain@soykaf.club> | 2018-05-13 12:38:13 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-05-13 12:38:13 +0200 |
commit | c7a85de35c3ef8cfca447ffdb85cd929258642df (patch) | |
tree | cde89f940be50a6ad13d3acc0a0c15d237ca7d96 | |
parent | 1027d1f6963b495a5abc67b05447619ce7d429db (diff) | |
download | pleroma-c7a85de35c3ef8cfca447ffdb85cd929258642df.tar.gz pleroma-c7a85de35c3ef8cfca447ffdb85cd929258642df.zip |
Revert "Remove 'unlisted' handling for now."
This reverts commit 1027d1f6963b495a5abc67b05447619ce7d429db.
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 3 | ||||
-rw-r--r-- | test/web/activity_pub/activity_pub_test.exs | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 4bd56d123..491ad3705 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -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 diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs index c4b59f5c7..a39ba9adb 100644 --- a/test/web/activity_pub/activity_pub_test.exs +++ b/test/web/activity_pub/activity_pub_test.exs @@ -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"}) |