forked from AkkomaGang/akkoma
ActivityPub: Use recipients fields.
This commit is contained in:
parent
5454ec6a6c
commit
7851b9ba81
1 changed files with 2 additions and 5 deletions
|
@ -140,11 +140,8 @@ defp restrict_tag(query, %{"tag" => tag}) 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("? && ?", ^recipients, activity.recipients)
|
||||
end
|
||||
|
||||
defp restrict_local(query, %{"local_only" => true}) do
|
||||
|
|
Loading…
Reference in a new issue