forked from AkkomaGang/akkoma
Fix for following type change.
This commit is contained in:
parent
4816b09fa7
commit
8895088029
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ def get_notified_from_activity(%Activity{recipients: to}) do
|
|||
def get_recipients_from_activity(%Activity{recipients: to}) do
|
||||
query = from u in User,
|
||||
where: u.ap_id in ^to,
|
||||
or_where: fragment("? \\\?| ?", u.following, ^to)
|
||||
or_where: fragment("? && ?", u.following, ^to)
|
||||
|
||||
query = from u in query,
|
||||
where: u.local == true
|
||||
|
|
Loading…
Reference in a new issue