Mix format
This commit is contained in:
parent
fd1fa5a2ec
commit
452980652d
2 changed files with 32 additions and 28 deletions
|
@ -885,7 +885,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|||
q = from(u in User, where: u.ap_id in ^likes)
|
||||
|
||||
users = Repo.all(q)
|
||||
users = if is_nil(user) do
|
||||
|
||||
users =
|
||||
if is_nil(user) do
|
||||
users
|
||||
else
|
||||
Enum.filter(users, &(not User.blocks?(user, &1)))
|
||||
|
@ -905,7 +907,9 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|||
q = from(u in User, where: u.ap_id in ^announces)
|
||||
|
||||
users = Repo.all(q)
|
||||
users = if is_nil(user) do
|
||||
|
||||
users =
|
||||
if is_nil(user) do
|
||||
users
|
||||
else
|
||||
Enum.filter(users, &(not User.blocks?(user, &1)))
|
||||
|
|
Loading…
Reference in a new issue