Simplify query.

This commit is contained in:
Roger Braun 2017-10-18 11:56:47 +02:00
parent b4f055b604
commit a17b261379
1 changed files with 2 additions and 5 deletions

View File

@ -118,11 +118,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
defp restrict_tag(query, _), do: query
defp restrict_recipients(query, recipients) do
Enum.reduce(recipients, query, fn (recipient, q) ->
map = %{ to: [recipient] }
from activity in q,
or_where: fragment(~s(? @> ?), activity.data, ^map)
end)
from activity in query,
where: fragment("?->'to' \\\?| ? ", activity.data, ^recipients)
end
defp restrict_local(query, %{"local_only" => true}) do