user: use Enum.uniq on the follow request query

This commit is contained in:
William Pitcock 2018-05-27 09:45:12 +00:00
parent f328de8eb7
commit ad7188fe92

View file

@ -378,6 +378,7 @@ defmodule Pleroma.User do
users =
Enum.map(reqs, fn (req) -> req.actor end)
|> Enum.uniq
|> Enum.map(fn (ap_id) -> get_by_ap_id(ap_id) end)
{:ok, users}