diff options
author | lain <lain@soykaf.club> | 2019-01-09 12:38:23 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-01-09 12:38:23 +0100 |
commit | 9854978b8bc3c3e4326b6dde9758dd276cd36e1c (patch) | |
tree | 3d7e8379250345e682f573c5b333e2a5c01e5c62 /lib | |
parent | 5c5c8508c203886f32b150e7d8c1f7362a4fde0e (diff) | |
download | pleroma-9854978b8bc3c3e4326b6dde9758dd276cd36e1c.tar.gz |
Remove recent activity restriction.
This should be fine now, everything should be covered by indices.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 4685f6d95..ea65538b6 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -517,15 +517,6 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do defp restrict_reblogs(query, _), do: query - # Only search through last 100_000 activities by default - defp restrict_recent(query, %{"whole_db" => true}), do: query - - defp restrict_recent(query, _) do - since = (Repo.aggregate(Activity, :max, :id) || 0) - 100_000 - - from(activity in query, where: activity.id > ^since) - end - defp restrict_blocked(query, %{"blocking_user" => %User{info: info}}) do blocks = info.blocks || [] domain_blocks = info.domain_blocks || [] @@ -570,7 +561,6 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do |> restrict_actor(opts) |> restrict_type(opts) |> restrict_favorited_by(opts) - |> restrict_recent(opts) |> restrict_blocked(opts) |> restrict_media(opts) |> restrict_visibility(opts) |