activitypub: use jsonb query for containment instead of recipients_to/recipients_cc.

This commit is contained in:
William Pitcock 2018-08-29 18:32:04 +00:00
parent b11746726e
commit de9acebbf3
1 changed files with 4 additions and 4 deletions

View File

@ -415,11 +415,11 @@ defp restrict_to_cc(query, recipients_to, recipients_cc) do
activity in query, activity in query,
where: where:
fragment( fragment(
"(? && ?) or (? && ?)", "(?->'to' \\?| ?) or (?->'cc' \\?| ?)",
activity.data,
^recipients_to, ^recipients_to,
activity.recipients_to, activity.data,
^recipients_cc, ^recipients_cc
activity.recipients_cc
) )
) )
end end