forked from AkkomaGang/akkoma
activitypub: use jsonb query for containment instead of recipients_to/recipients_cc.
This commit is contained in:
parent
b11746726e
commit
de9acebbf3
1 changed files with 4 additions and 4 deletions
|
@ -415,11 +415,11 @@ defp restrict_to_cc(query, recipients_to, recipients_cc) do
|
|||
activity in query,
|
||||
where:
|
||||
fragment(
|
||||
"(? && ?) or (? && ?)",
|
||||
"(?->'to' \\?| ?) or (?->'cc' \\?| ?)",
|
||||
activity.data,
|
||||
^recipients_to,
|
||||
activity.recipients_to,
|
||||
^recipients_cc,
|
||||
activity.recipients_cc
|
||||
activity.data,
|
||||
^recipients_cc
|
||||
)
|
||||
)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue