1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-09-11 14:17:21 +01:00

User.Query: Remove superfluous distinct

This commit is contained in:
lain 2020-05-19 14:36:34 +02:00
parent 2328eff09c
commit be322541c8

View file

@ -177,8 +177,7 @@ defp compose_query({:recipients_from_activity, to}, query) do
)
from(u in query,
where: u.ap_id in ^to or u.id in subquery(following_query),
distinct: true
where: u.ap_id in ^to or u.id in subquery(following_query)
)
end